The following has evaluated to null or missing: ==> dms [in template "33701#33738#D3_PLASMA_DONATION_CENTER_DETAIL" at line 331, 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 331, column 17] ----
1<#include d3_macros/>
2<#assign JournalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService")>
3<#assign d3DonorCompensationLocalService = serviceLocator.findService("com.grifols.d3.donor.compensation.service.DonorCompensationLocalService") />
4<#assign portalURL=themeDisplay.getPortalURL()>
5<#assign portalLanguage=themeDisplay.getLanguageId()[0..1]>
6
7<#assign centerImage="">
8<#assign centerImageAltText="">
9<#assign centerInformationDescription = ""/>
10
11<#assign sharedDescriptionContent="">
12<#assign sharedDescriptionArticle = JournalArticleLocalService.getLatestArticleByUrlTitle(scopeGroupId, "center-details-shared-description", 0)>
13
14<#if sharedDescriptionArticle??>
15 <#assign sharedDescriptionContent = JournalArticleLocalService.getArticleContent(scopeGroupId, sharedDescriptionArticle.getArticleId(), "", locale, objThemeDisplay)>
16
17 <#if sharedDescriptionContent?has_content && sharedDescriptionContent?trim?index_of("{") == 0>
18 <#assign shared_description = jsonFactoryUtil.createJSONObject(sharedDescriptionContent?trim)>
19
20 <#if shared_description??>
21 <#if shared_description.getJSONObject("center_image")?has_content>
22 <#assign centerImageContent = shared_description.getJSONObject("center_image")>
23 <#if centerImageContent.getString("content")?has_content >
24 <#assign centerImage = centerImageContent.getString("content")>
25 </#if>
26
27 <#if centerImageContent.getString("alt_text")?has_content >
28 <#assign centerImageAltText = centerImageContent.getString("alt_text")>
29 </#if>
30 </#if>
31
32 <#if shared_description.getJSONObject("center_ammenities")?has_content>
33 <#assign centerAmmenitiesContent = shared_description.getJSONObject("center_ammenities")>
34 <#if centerAmmenitiesContent.getString("title")?has_content >
35 <#assign centerAmmenitiesTitle = centerAmmenitiesContent.getString("title")>
36 </#if>
37
38 <#if centerAmmenitiesContent.getString("description")?has_content >
39 <#assign centerAmmenitiesDescription = centerAmmenitiesContent.getString("description")>
40 </#if>
41
42 <#if centerAmmenitiesContent.getJSONArray("ammenities")?has_content && centerAmmenitiesContent.getJSONArray("ammenities")?is_hash>
43 <#assign centerAmmenitiesList = centerAmmenitiesContent.getJSONArray("ammenities")>
44 </#if>
45 </#if>
46
47 <#if shared_description.getJSONObject("donation_requirements")?has_content>
48 <#assign donationRequirementsContent = shared_description.getJSONObject("donation_requirements")>
49 <#if donationRequirementsContent.getString("title")?has_content >
50 <#assign donationRequirementsTitle = donationRequirementsContent.getString("title")>
51 </#if>
52
53 <#if donationRequirementsContent.getJSONArray("requirements")?has_content && donationRequirementsContent.getJSONArray("requirements")?is_hash>
54 <#assign donationRequirementsList = donationRequirementsContent.getJSONArray("requirements")>
55 </#if>
56 </#if>
57
58 <#if shared_description.getJSONObject("steps_to_donate")?has_content>
59 <#assign stepsToDonateContent = shared_description.getJSONObject("steps_to_donate")>
60 <#if stepsToDonateContent.getString("title")?has_content >
61 <#assign stepsToDonateTitle = stepsToDonateContent.getString("title")>
62 </#if>
63
64 <#if stepsToDonateContent.getJSONArray("steps")?has_content && stepsToDonateContent.getJSONArray("steps")?is_hash>
65 <#assign stepsToDonateList = stepsToDonateContent.getJSONArray("steps")>
66 </#if>
67 </#if>
68
69 <#if shared_description.getJSONObject("center_information")?has_content>
70 <#assign centerInformationContent = shared_description.getJSONObject("center_information")>
71 <#if centerInformationContent.getString("title")?has_content >
72 <#assign centerInformationTitle = centerInformationContent.getString("title")>
73 </#if>
74
75 <#if centerInformationContent.getString("default_description")?has_content >
76 <#assign centerInformationDescription = centerInformationContent.getString("default_description")>
77 </#if>
78 </#if>
79
80 <#if shared_description.getJSONObject("specialty_programs")?has_content>
81 <#assign specialtyProgramsContent = shared_description.getJSONObject("specialty_programs")>
82 <#if specialtyProgramsContent.getString("title")?has_content >
83 <#assign specialtyProgramsTitle = specialtyProgramsContent.getString("title")>
84 </#if>
85
86 <#if specialtyProgramsContent.getString("description")?has_content >
87 <#assign specialtyProgramsDescription = specialtyProgramsContent.getString("description")>
88 </#if>
89
90 <#if specialtyProgramsContent.getJSONArray("programs")?has_content && specialtyProgramsContent.getJSONArray("programs")?is_hash>
91 <#assign specialtyProgramsList = specialtyProgramsContent.getJSONArray("programs")>
92 </#if>
93 </#if>
94
95 <#if shared_description.getJSONObject("refer_friend")?has_content>
96 <#assign referAFriendContent = shared_description.getJSONObject("refer_friend")>
97 <#if refer_a_friend?? && refer_a_friend.getData()?has_content>
98 <#assign referFriendTitle = refer_a_friend.getData()>
99 <#elseif referAFriendContent.getString("title")?has_content >
100 <#assign referFriendTitle = referAFriendContent.getString("title")>
101 </#if>
102 <#if referAFriendContent.getString("image")?has_content >
103 <#assign referAFriendImage = referAFriendContent.getString("image")>
104 </#if>
105 </#if>
106
107 <#if shared_description.getJSONObject("donor_compensation")?has_content>
108 <#assign donorCompensationContent = shared_description.getJSONObject("donor_compensation")>
109
110 <#if donorCompensationContent.getString("image")?has_content >
111 <#assign donorCompensationImage = donorCompensationContent.getString("image")>
112 </#if>
113 </#if>
114 </#if>
115 </#if>
116</#if>
117
118
119<#assign centerName = ""/>
120<#if main_title?? && main_title.getData()?has_content>
121 <#assign centerName = main_title.getData()/>
122</#if>
123
124<#if center_name?? && center_name.getData()?has_content>
125 <#assign centerName = center_name.getData()/>
126</#if>
127
128<#assign centerLogo = ""/>
129<#if picture?? && picture.getData()?has_content>
130 <#assign centerLogo = picture.getData()/>
131</#if>
132
133<#assign centerState = ""/>
134<#if state?? && state.getData()?has_content>
135 <#assign centerState = state.getData()/>
136</#if>
137
138<#assign centerAddress = ""/>
139<#if address?? && address.getData()?has_content>
140 <#assign centerAddress = address.getData()/>
141</#if>
142
143<#assign centerCity = ""/>
144<#if city?? && city.getData()?has_content>
145 <#assign centerCity = city.getData()/>
146</#if>
147
148<#assign centerZipCode = ""/>
149<#if zipcode?? && zipcode.getData()?has_content>
150 <#assign centerZipCode = zipcode.getData()/>
151</#if>
152
153<#assign centerPhone = ""/>
154<#if phone?? && phone.getData()?has_content>
155 <#assign centerPhone = phone.getData()/>
156</#if>
157
158<#if center_image?? && center_image.getData()?has_content>
159 <#assign centerImage = center_image.getData()/>
160</#if>
161
162<#if information?? && information.getData()?has_content>
163 <#assign centerInformationDescription = information.getData()/>
164</#if>
165
166<#assign centerAddress = ""/>
167<#if address?? && address.getData()?has_content>
168 <#assign centerAddress = address.getData()/>
169</#if>
170
171
172<#assign centerDMS = ""/>
173<#if dms?? && dms.getData()!=''>
174 <#assign centerDMS = dms.getData()>
175</#if>
176
177<#assign hoursMicrodata = "" />
178
179<div class="d3-detail-page" style="padding: 0">
180 <div class="d3-promotional-block">
181 <div class="promotional-text on-left">
182 <div class="container">
183 <div class="d3-col-xs-6 d3-col-md-10">
184 <#if centerLogo != "">
185 <img
186 alt="Grifols Center Logo"
187 src="${centerLogo}"
188 />
189 </#if>
190
191 <#assign centerNameState = ""/>
192 <#if centerName != "">
193 <#assign centerNameState = centerName/>
194
195 <#if centerState != "">
196 <#assign centerNameState += (", " + centerState)/>
197 </#if>
198 </#if>
199
200 <#if centerNameState != "">
201 <h1>
202 ${centerNameState}
203 </h1>
204 </#if>
205
206 <#if centerAddress != "" || centerPhone != "" >
207 <p>
208 <#if centerAddress != "">
209 ${centerAddress} <br />
210
211 <#if centerCity != "">
212 ${centerCity}
213 </#if>
214
215 <#if centerState != "">
216 ${centerState}
217 </#if>
218
219 <#if centerZipCode != "">
220 ${centerZipCode}
221 </#if>
222 </#if>
223
224 <#if centerPhone != "">
225 <br />${centerPhone}
226 </#if>
227 </p>
228 </#if>
229
230 <div class="button-row">
231 <#if schedule_a_visit?? && schedule_a_visit.getData()?has_content>
232 <#if centerDMS != "" && portalLanguage?? && portalLanguage?has_content>
233 <#assign appointmentURL = "https://new.grifolsplasmadonorhub.com/guest/schedule-donation?centerCode=" + centerDMS + "&lang=" + portalLanguage />
234 </#if>
235
236 <#if appointmentURL?? && appointmentURL?has_content>
237 <a
238 class="btn btn-primary btn-icon--left"
239 href="${appointmentURL}"
240 target="_blank"
241 >
242 <i class="ph-bold ph-calendar"></i>
243 <@liferay.language key="com.grifols.d3.schedule-appointment"/>
244 </a>
245 </#if>
246 </#if>
247
248 <#assign googleMapsURL = ""/>
249 <#if driving_directions?? && driving_directions.getData()?has_content>
250 <#assign googleMapsURL = driving_directions.getData()/>
251 <#else>
252 <#if centerAddress != "" && centerCity != "" && centerState != "" && centerZipCode != "" >
253 <#assign googleMapsURL = centerAddress + "," + centerCity + "," + centerState + "," + centerZipCode/>
254 <#assign googleMapsURL = htmlUtil.escapeURL( googleMapsURL)/>
255 <#assign googleMapsURL = "http://maps.google.com?q=" + googleMapsURL/>
256 </#if>
257 </#if>
258
259 <#if googleMapsURL != "">
260 <a
261 class="btn btn-secondary btn-icon--left"
262 href="${googleMapsURL}"
263 target="_blank"
264 >
265 <i class="ph-bold ph-traffic-sign"></i>
266 <@liferay.language key="com.grifols.d3.driving-directions"/>
267 </a>
268 </#if>
269 </div>
270 </div>
271 </div>
272 </div>
273
274
275 <div class="promotional-image aspect-ratio-bg-center aspect-ratio-bg-cover d3-xs-hide" title="${centerName}"> </div>
276 <div class="promotional-image aspect-ratio aspect-ratio-8-to-5 aspect-ratio-bg-center aspect-ratio-bg-cover d3-md-hide" title="${centerName}"> </div>
277 </div>
278
279 <div class="d3-component container">
280 <div class="row">
281 <div class="d3-col-xs-6 d3-col-md-6">
282 <#if centerDMS != "">
283 <#assign dcTextModel = ""/>
284 <#if d3DonorCompensationLocalService.getDonorCompensationByDMS(centerDMS)?has_content>
285 <#assign curDonorCompensation = d3DonorCompensationLocalService.getDonorCompensationByDMS(centerDMS)/>
286
287 <#if curDonorCompensation?? && curDonorCompensation?has_content>
288 <#if locale = "en_US">
289 <#assign dcTextModel = curDonorCompensation.compensationMessageEN/>
290 <#elseif locale = "es_ES">
291 <#assign dcTextModel = curDonorCompensation.compensationMessageES/>
292 </#if>
293 </#if>
294 </#if>
295
296
297 <#if dcTextModel != "">
298 <div class="d3-description">
299 <h3><@liferay.language key='com.grifols.d3.new-donor-compensation' />*</h3>
300 <div class="donor-compensation-icons">
301 <#if donorCompensationImage??>
302 <img
303 alt="Donor Compensation Icon"
304 src="${donorCompensationImage}"
305 />
306 </#if>
307 <div>
308 <p class="text-bold">${dcTextModel}</p>
309 <p class="text-caption">*<@liferay.language key='com.grifols.d3.compensation-amounts-subject-change' /></p>
310 </div>
311 </div>
312 </div>
313 </#if>
314
315 <#if referFriendTitle??>
316 <div class="donor-compensation-icons">
317 <#if referAFriendImage??>
318 <img
319 alt="Refer a Friend Icon"
320 src="${referAFriendImage}"
321 />
322 </#if>
323 <div>
324 <p class="text-bold">${referFriendTitle}</p>
325 <p class="text-caption">*<@liferay.language key='com.grifols.d3.compensation-amounts-subject-change' /></p>
326 </div>
327 </div>
328 </#if>
329 </#if>
330
331 <#if dms.getData()?has_content >
332 <#if themeDisplay.getPortletDisplay().getPortletName() == "preview" >
333 <#assign centerOperationHours = plasmaUtils.getHoursToShow( locale, dms.getData(), true)/>
334 <#else>
335 <#assign centerOperationHours = plasmaUtils.getHoursToShow( locale, dms.getData(), false)/>
336 </#if>
337
338 <#if centerOperationHours != "" >
339 <#assign hoursMicrodata = plasmaUtils.getHoursMicrodata(dms.getData()) />
340 <div class="d3-description">
341 <h3><@liferay.language key='com.grifols.plasma.hours' /></h3>
342 ${centerOperationHours}
343 </div>
344 </#if>
345 </#if>
346 </div>
347 <div class="d3-col-xs-6 d3-col-md-6">
348 <#if (covid_convalescent?? && covid_convalescent.getData()?? && covid_convalescent.getData() == 'true')
349 || (childcare?? && childcare.getData()?? && childcare.getData() == 'true')
350 || (appointments?? && appointments.getData()?? && appointments.getData() == 'true')
351 || (ownbuilding?? && ownbuilding.getData()?? && ownbuilding.getData() == 'true')
352 || (inshoppingcenter?? && inshoppingcenter.getData()?? && inshoppingcenter.getData() == 'true')
353 || (bankofamerica?? && bankofamerica.getData()?? && bankofamerica.getData() == 'true')
354 || (paysign?? && paysign.getData()?? && paysign.getData() == 'true')
355 || (donorhub?? && donorhub.getData()?? && donorhub.getData() == 'true')
356 >
357
358 <div class="d3-description">
359 <#if centerAmmenitiesTitle??>
360 <h3>${centerAmmenitiesTitle}</h3>
361 </#if>
362
363 <div class="center-ammenities-container">
364 <#list 0..<centerAmmenitiesList.length() as center_ammenities_index>
365 <#if centerAmmenitiesList.getJSONObject(center_ammenities_index)??>
366 <#assign cur_ammenity = centerAmmenitiesList.getJSONObject(center_ammenities_index)>
367 <#if cur_ammenity.getString("id_name")?? && cur_ammenity.getString("id_name")?has_content>
368 <#assign cur_ammenity_id_name = cur_ammenity.getString("id_name")>
369
370 <#if (cur_ammenity_id_name = 'covid-convalescent' && covid_convalescent?? && covid_convalescent.getData()?? && covid_convalescent.getData() == 'true')
371 || (cur_ammenity_id_name = 'childcare' && childcare?? && childcare.getData()?? && childcare.getData() == 'true')
372 || (cur_ammenity_id_name = 'appointments' && appointments?? && appointments.getData()?? && appointments.getData() == 'true')
373 || (cur_ammenity_id_name = 'own-building' && ownbuilding?? && ownbuilding.getData()?? && ownbuilding.getData() == 'true')
374 || (cur_ammenity_id_name = 'in-shopping-center' && inshoppingcenter?? && inshoppingcenter.getData()?? && inshoppingcenter.getData() == 'true')
375 || (cur_ammenity_id_name = 'bank-of-america' && bankofamerica?? && bankofamerica.getData()?? && bankofamerica.getData() == 'true')
376 || (cur_ammenity_id_name = 'paysign' && paysign?? && paysign.getData()?? && paysign.getData() == 'true')
377 || (cur_ammenity_id_name = 'donorhub' && donorhub?? && donorhub.getData()?? && donorhub.getData() == 'true')
378 >
379 <div class="specialty-programs-icons">
380 <#assign cur_ammenity_name = cur_ammenity.getString("name")>
381
382 <#if cur_ammenity.getString("icon")?? && cur_ammenity.getString("icon")?has_content && cur_ammenity_id_name != 'donorhub'>
383 <#assign card_icon = getPhosphorIcon(cur_ammenity.getString("icon")) />
384 <div class="circle">
385 <i class="d3-icon ${card_icon}"></i>
386 </div>
387 </#if>
388
389 <#if cur_ammenity_id_name = 'donorhub'>
390 <img
391 alt="${cur_ammenity_id_name}"
392 src="${portalURL}/documents/1088990/1092005/donorhub-avatar.png/c2cbf871-138e-495c-bda4-24ba8852036a?t=1719494894109"
393 />
394
395
396 <#assign donorhubURL = "https://new.grifolsplasmadonorhub.com" />
397 <a
398 href="${donorhubURL}" target="_blank"
399 >
400 ${cur_ammenity_name}
401 </a>
402 <#else>
403 <p>${cur_ammenity_name}</p>
404 </#if>
405
406 </div>
407 </#if>
408 </#if>
409 </#if>
410 </#list>
411
412 <#if (antidprogram?? && antidprogram.getData()?? && antidprogram.getData() == 'true')
413 || (rabiesprogram?? && rabiesprogram.getData()?? && rabiesprogram.getData() == 'true')
414 || (tetanusprogram?? && tetanusprogram.getData()?? && tetanusprogram.getData() == 'true')
415 || (hepatitisbprogram?? && hepatitisbprogram.getData()?? && hepatitisbprogram.getData() == 'true')
416 || (rsv_program?? && rsv_program.getData()?? && rsv_program.getData() == 'true')
417 || (male_ab_program?? && male_ab_program.getData()?? && male_ab_program.getData() == 'true')
418 >
419 <#list 0..<specialtyProgramsList.length() as specialty_programs_index>
420 <#if specialtyProgramsList.getJSONObject(specialty_programs_index)??>
421 <#assign cur_specialty_program = specialtyProgramsList.getJSONObject(specialty_programs_index)>
422 <#if cur_specialty_program.getString("id_name")?? && cur_specialty_program.getString("id_name")?has_content>
423 <#assign cur_specialty_program_id_name = cur_specialty_program.getString("id_name")>
424
425 <#if (cur_specialty_program_id_name == 'anti-d-program' && antidprogram?? && antidprogram.getData()?? && antidprogram.getData() == 'true')
426 || (cur_specialty_program_id_name == 'anti-rabies-program' && rabiesprogram?? && rabiesprogram.getData()?? && rabiesprogram.getData() == 'true')
427 || (cur_specialty_program_id_name == 'anti-tetanus-program' && tetanusprogram?? && tetanusprogram.getData()?? && tetanusprogram.getData() == 'true')
428 || (cur_specialty_program_id_name == 'anti-hepatitis-B-program' && hepatitisbprogram?? && hepatitisbprogram.getData()?? && hepatitisbprogram.getData() == 'true')
429 || (cur_specialty_program_id_name == 'anti-rsv-program' && rsv_program?? && rsv_program.getData()?? && rsv_program.getData() == 'true')
430 || (cur_specialty_program_id_name == 'male-ab-program' && male_ab_program?? && male_ab_program.getData()?? && male_ab_program.getData() == 'true')
431 >
432 <div class="specialty-programs-icons">
433 <#assign cur_specialty_program_id = cur_specialty_program.getString("id_name")>
434 <#assign cur_specialty_program_name = cur_specialty_program.getString("name")>
435
436 <#if cur_specialty_program.getString("icon")?? && cur_specialty_program.getString("icon")?has_content>
437 <#assign cur_specialty_program_icon = cur_specialty_program.getString("icon")>
438 <img
439 alt="${cur_specialty_program_name}"
440 src="${cur_specialty_program_icon}"
441 />
442 </#if>
443
444 <#assign cur_specialty_url = "/en/experienced-donor/specialty-plasma-programs">
445
446 <#if cur_specialty_program_id = "anti-d-program" || cur_specialty_program_id = "anti-hepatitis-B-program" >
447 <#assign cur_specialty_url = cur_specialty_url + "#anti-B-D">
448 <#elseif cur_specialty_program_id = "anti-tetanus-program" || cur_specialty_program_id = "anti-rabies-program" >
449 <#assign cur_specialty_url = cur_specialty_url + "#anti-tetanus-rabies">
450 <#elseif cur_specialty_program_id = "anti-rsv-program" || cur_specialty_program_id = "male-ab-program" >
451 <#assign cur_specialty_url = cur_specialty_url + "#anti-rsv-ab">
452 </#if>
453
454 <a href="${cur_specialty_url}">${cur_specialty_program_name}</a>
455 </div>
456 </#if>
457 </#if>
458 </#if>
459 </#list>
460 </#if>
461 </div>
462 </div>
463 </#if>
464
465 <#if donationRequirementsList??>
466 <div class="d3-description">
467 <#if donationRequirementsTitle??>
468 <h3>${donationRequirementsTitle}</h3>
469 </#if>
470
471 <p>
472 <#list 0..<donationRequirementsList.length() as donation_requirements_index>
473 <#if donationRequirementsList.getJSONObject(donation_requirements_index)??>
474 <#assign cur_requirement = donationRequirementsList.getJSONObject(donation_requirements_index)>
475 <#if cur_requirement.getString("description")?? && cur_requirement.getString("description")?has_content>
476 <strong>${donation_requirements_index + 1}. </strong>${cur_requirement.getString("description")}<br/>
477 </#if>
478 </#if>
479 </#list>
480 </p>
481 </div>
482 </#if>
483 </div>
484 </div>
485 </div>
486
487 <#if stepsToDonateList??>
488 <div style="text-align: center">
489 <div class="d3-info-card row-4">
490 <div class="container">
491 <#if stepsToDonateTitle??>
492 <div class="d3-row text-content d3-introduction align-center">
493 <h2>${stepsToDonateTitle}</h2>
494 </div>
495 </#if>
496
497 <div class="d3-content-grid" style="justify-content: center">
498 <#list 0..<stepsToDonateList.length() as steps_to_donate_index>
499 <#if stepsToDonateList.getJSONObject(steps_to_donate_index)??>
500 <#assign cur_step = stepsToDonateList.getJSONObject(steps_to_donate_index)>
501 <#if (cur_step.getString("description")?? && cur_step.getString("description")?has_content)
502 || cur_step.getString("image")?? && cur_step.getString("image")?has_content>
503 <div class="d3-col-xs-6 d3-col-sm-3 d3-col-md-2">
504 <div class="d3-card-ghost item-1">
505 <div class="card-content">
506 <#if cur_step.getString("image")?? && cur_step.getString("image")?has_content>
507 <img
508 src="${cur_step.getString("image")}"
509 />
510 </#if>
511
512 <#if cur_step.getString("description")?? && cur_step.getString("description")?has_content>
513 <strong class="text-lg">
514 ${steps_to_donate_index + 1}. ${cur_step.getString("description")}
515 </strong>
516 </#if>
517 </div>
518 </div>
519 </div>
520 </#if>
521 </#if>
522 </#list>
523 </div>
524 </div>
525 </div>
526 </div>
527 </#if>
528
529
530 <#if centerInformationDescription??>
531 <div class="d3-component">
532 <div class="container">
533 <div class="d3-col-xs-6 d3-col-md-10 d3-offset-md-1">
534 <#if centerInformationTitle??>
535 <h3>${centerInformationTitle}</h3>
536 </#if>
537 <div>${centerInformationDescription
538 ?replace("CENTER_COMPANY","${centerName}")
539 ?replace("CENTER_CITY","${centerCity}")
540 ?replace("CENTER_STATE","${centerState}")}</div>
541 </div>
542 </div>
543 </div>
544 </#if>
545</div>
546
547<style>
548 .journal-content-article .promotional-image {
549 background-image: url("${centerImage}");
550 }
551
552 .d3-description .hours {
553 display: flex;
554 }
555
556 .d3-description .hours .day-name{
557 width: 50%;
558 }
559
560 .center-ammenities-container {
561 display: flex;
562 flex-wrap: wrap;
563 }
564
565 .specialty-programs-icons {
566 display: flex;
567 flex-direction: row;
568 align-items: center;
569 gap: 16px;
570 padding-bottom: 16px;
571 width: 100%;
572 }
573
574 .donor-compensation-icons img {
575 height: 40px;
576 }
577
578 .donor-compensation-icons {
579 display: flex;
580 flex-direction: row;
581 align-items: center;
582 gap: 16px;
583 padding-bottom: 16px;
584 width: 100%;
585 }
586
587 .specialty-programs-icons img {
588 height: 32px;
589 }
590
591 .specialty-programs-icons .circle {
592 display: flex;
593 align-items: center;
594 background-color: #d4e4f4;
595 color: #002969;
596 border-radius: 100%;
597 justify-content: center;
598 width: 32px;
599 height: 32px;
600 }
601
602 .specialty-programs-icons .circle .d3-icon {
603 font-size: 16px;
604 }
605
606 @media screen and ( min-width: 600px )
607 {
608 .specialty-programs-icons {
609 width: 50%;
610 }
611
612
613</style>
614
615<script type="application/ld+json">
616 <#assign portalURL=themeDisplay.getPortalURL()>
617
618 {
619 "@context": "https://schema.org",
620 "@type": "LocalBusiness",
621 "logo": "${portalURL}${centerLogo}",
622 "name": "${centerName}",
623 "photo": "${portalURL}${centerImage}",
624 "address": {
625 "@type": "PostalAddress",
626 "addressLocality": "${centerCity}",
627 "addressRegion": "${centerState}",
628 "postalCode": "${centerZipCode}",
629 "streetAddress": "${address.getData()}",
630 "addressCountry": "US"
631 },
632 "telephone": "${centerPhone}",
633 "description": "${centerInformationDescription?json_string}",
634 "hasMap": "${googleMapsURL}",
635
636 <#if x_coordinate?? && x_coordinate.getData()?has_content && y_coordinate??
637 && y_coordinate.getData()?has_content>
638 "geo": {
639 "@type": "GeoCoordinates",
640 "latitude": "${x_coordinate.getData()}",
641 "longitude": "${y_coordinate.getData()}"
642 },
643 </#if>
644 <#if hoursMicrodata != "">
645 ${hoursMicrodata?remove_beginning("{")?remove_ending("}")}
646 </#if>
647 }
648</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

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

Grifols
Fayetteville, NC 28306
910-221-0075

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.
Jacksonville, FL 32210
904-771-6256

Biomat USA, Inc.
Hinesville, GA 31313
912-255-6150

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

Grifols
St. Petersburg, FL 33710
727-284-3500

Biomat USA, Inc.
Clearwater, FL 33764
727-519-0318

Grifols
Cleveland, OH 44110
216-258-0249

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

Grifols
Mansfield, OH 44906
419-520-9523

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

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

Grifols
Louisville, KY 40219
502-212-2230

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

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

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

Grifols
Wichita, KS 67218
316-201-3449

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

Grifols
White Settlement, TX 76108
682-200-4201

Talecris Plasma Resources, Inc.
Corpus Christi, TX 78415
361-855-0310

Grifols
Killeen, TX 76542
254-312-6066

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 357-2232

Grifols
Calexico, CA 92231
760-768-2066

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