NHL Boston Bruins Divide Secondary Large Crew Socks
NHL Boston Bruins Divide Secondary Large Crew Socks
NHL Boston Bruins Divide Secondary Large Crew Socks
NHL Boston Bruins Divide Secondary Large Crew Socks
NHL Boston Bruins Divide Secondary Large Crew Socks
NHL Boston Bruins Divide Secondary Large Crew Socks
NHL Boston Bruins Divide Secondary Large Crew Socks
NHL Boston Bruins Divide Secondary Large Crew Socks
1 / 2

NHL Boston Bruins Divide Secondary Large Crew Socks

Color - Yellow
Please select a color
Size
Please select a size
The current item does not participate in the discount gift campaign. Switch the participating items to check the design.
(This prompt will not be displayed on the client-side)
Price
$5.99
$18.99

Quantity

Fit & style



Long Lasting Woven Team Logo Graphics

  • Cushioned foot for added comfort
  • Moisture Management keeps you cool and comfortable
  • Shaped heel pocket for enhanced fit
  • Made with Sustainable Sourced Materials



Please Note: All dimensions are measured manually with a deviation   of 1 to 5cm 



Size/INCHUSukuseubustwaistlinehipsshoulder widthweight-kg
SUS4/620.3/25.410.2/15.291.4/96.537.031.538.217.121.7-23.6
MUS8/1030.5/35.620.3/25.4101.6/106.739.033.540.217.723.6-25.6
LUS126.34.717.340.935.442.118.325.6-27.6
XLUS147.15.518.142.937.444.118.927.6-29.5
2XLUS167.96.318.944.939.446.119.529.5-31.5
3XLUS188.77.119.746.941.348.020.131.5-33.5
4XLUS209.47.920.548.843.350.020.733.5-35.4
5XLUS2210.28.721.350.845.352.021.335.4-37.4


Size/CMUSukuseubustwaistlinehipsshoulder widthweight-kg
SUS4/68/104/636/3894809743.555-60
MUS8/1012/148/1040/4299851024560-65
LUS121612441049010746.565-70
XLUS14181446109951124870-75
2XLUS1620164811410011749.575-80
3XLUS182218501191051225180-85
4XLUS2024205212411012752.585-90
5XLUS222622541291151325490-95






How to Measure



We use premium quality cotton!

Every piece of clothing is made of 100% cotton!

This is our dedicated cotton production base! Guaranteed clothes and the like!

/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1711436955962').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);