/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Shippori+Mincho+B1:wght@400;500;700&display=swap');
/*
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-weight: 500;
	font-weight: 700;
	font-family: 'Shippori Mincho B1', serif;
	font-weight: 400;
	font-weight: 500;
	font-weight: 700;
*/

:root{
	--color: #1a1a1a;
	--color-pale: #4d4d4d;
	--color-rgb: 26, 26, 26;
	--color-theme: #d6d8da;
	--color-theme-rgb: 214, 216, 218;
	--color-point: #6e8094;
	--color-point-rgb: 110, 128, 148;
	--color-border: #808080;
	--color-area1: #e39b88;
	--color-area2: #93889f;
	--color-area3: #ceba79;
	--color-area4: #8bbda7;
	--color-variable: var(--color-theme);
	--wrap: min(calc(100vw - 40px), 1140px);
	--wrap-fit: calc(100vw - 40px);
	--wrap-max: 1140px;
	--font: 'Noto Sans JP', sans-serif;
	--font-go: var(--font);
	--font-min: 'Shippori Mincho B1', serif;
	}

html{
	scroll-behavior: smooth;
	scroll-padding-top: 60px;
	}

body{
	color: var(--color);
	font: 400 16px var(--font);
	/*font-feature-settings: "palt";*/
	/*text-align: justify; 英文では解除*/
	overflow-wrap: break-word;
	line-height: 1;
	}
	body.nav{
		overflow: hidden;
		}
	::selection{
		background: var(--color-theme);
		color: #fff;
		}
	::-moz-selection{
		background: var(--color-theme);
		color: #fff;
		}
	_::content, _:future, body:not(*:root) {
		/* Chromeのハック */
		/*フォント細いって言われたとき
		font-weight: 500;
		*/
		}
	_::-webkit-full-page-media, _:future, :root body{
		/* safariのハック */
		}
	@-moz-document url-prefix(){
		/* Firefoxのハック */
		.xxx{
		
			}
		}

a{
	color: inherit;
	word-break: break-word;
	}
	.done a{
		transition-property: color,text-decoration,background,background-color,background-size,border,border-color,box-shadow,filter,opacity;
		transition-duration: 0.2s;
		transition-timing-function: ease-out;
		}

main{}
	main a{
		color: #0096ba;
		}
		main a:where(:hover,:focus){
			text-decoration: underline;
			}
	main p{
		line-height: 1.75;
		}

:where(input,textarea,select){
	accent-color: var(--color-theme);
	}
	:where(input,textarea,select):focus{
		border: 1px solid var(--color-theme);
		}

:where(input[type="radio"],input[type="checkbox"]){}
	:where(input[type="radio"],input[type="checkbox"])+label{}
		:where(input[type="radio"],input[type="checkbox"])+label:before{
			color: rgba(var(--color-rgb),0.2);
			}
	:where(input[type="radio"],input[type="checkbox"]):checked+label{}
		:where(input[type="radio"],input[type="checkbox"]):checked+label:before{
			animation: checked 0.2s forwards;
			color: var(--color);
			}
		@keyframes checked{
			30% {box-shadow: 0 0 0 1em rgba(var(--color-rgb),0.5);}
			}

#wrapper{
	display: grid;
	}
	#wrapper > *{
		grid-column: 1;
		}
	#wrapper #header{
		z-index: 120;
		}
	#wrapper #nav{
		z-index: 140;
		}
	#wrapper #floatingNav{
		z-index: 130;
		}

#header{}
	@media (max-width: 991.98px) {
		#header{
			position: sticky;
			top: 0;
			height: 60px;
			display: flex;
			justify-content: space-between;
			background: var(--color-theme);
			}
		#header #siteName{
			margin-left: 20px;
			align-self: center;
			}
		#header #hNav{
			display: none;
			}
		#header #searchButton{
			margin-left: auto;
			}
		}
	@media (min-width: 992px) {
		#header{
			display: grid;
			grid-template-rows: 44px auto;
			background: #fff;
			border-bottom: 1px solid var(--color-border);
			}
			#header:before{
				content: attr(data-text);
				grid-column: 1 / 3;
				grid-row: 1;
				display: grid;
				align-items: center;
				padding-left: 24px;
				background: var(--color-theme);
				}
		#header #siteName{
			grid-column: 1;
			grid-row: 2;
			align-self: center;
			margin: 16px 0 16px 24px;
			}
		#header #searchButton{
			display: none;
			}
		#header #navButton{
			display: none;
			}
		#header #hNav{
			grid-column: 2;
			grid-row: 1 / 3;
			}
		}
	@media (min-width: 1200px) {
		#header #siteName a{
			width: 240px;
			}
		}

#siteName{}
	#siteName a{
		display: block;
		font-size: 18px;
		}
	@media (min-width: 992px) {
		#siteName a{
			width: 200px;
			aspect-ratio: 4 / 1;
			background: url("../images/logoType.webp") center no-repeat;
			background-size: contain;
			font-size: 0;
			transition: none;
			overflow: hidden;
			}
		}

#hNav{
	justify-self: end;
	display: grid;
	grid-template-columns: 1fr auto auto;
	grid-template-rows: 44px auto auto;
	align-items: center;
	grid-gap: 0 10px;
	padding: 0 24px 16px 24px;
	}
	#hNav :where(#hNavGlobal, #hNavPickup){
		grid-column: 1 / 4;
		font-size: min(1.1vw, 16px);
		order: 1;
		}
	#hNav #hNavSearch{
		margin-left: auto;
		}
	#hNav #hNavGlobal{
		margin-top: 16px;
		}
		#hNav #hNavGlobal:last-child{
			grid-row: 2 / 4;
			}
		#hNav #hNavGlobal:not(:last-child){
			align-self: end;
			}
	#hNav #hNavPickup{
		margin-top: 8px;
		}

#hNavSearch{}
	#hNavSearch form{
		height: 24px;
		background: #fff;
		grid-gap: 4px;
		font-size: 12px;
		}
	#hNavSearch [type="submit"]{
		order: -1;
		width: 24px;
		}

#hNavExtra{}
	#hNavExtra ul{
		display: flex;
		grid-gap: 10px;
		}
	#hNavExtra a{
		display: grid;
		grid-template-columns: auto 8px 6px;
		align-items: center;
		grid-gap: 8px;
		height: 24px;
		padding: 2px 8px;
		background: #fff;
		border: 1px solid var(--color-border);
		font-size: 12px;
		}
		#hNavExtra a:before{
			content: "";
			height: 16px;
			border-right: 1px solid var(--color-border);
			order: 1;
			}
		#hNavExtra a:after{
			content: "";
			width: 6px;
			height: 8px;
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 8"><polygon points="0 8 0 0 6 4 0 8"/></svg>') center no-repeat;
			background: currentColor;
			order: 2;
			}

#hNavLanguage{}
	#hNavLanguage dl{
		position: relative;
		font-size: 12px;
		}
		#hNavLanguage dl > dd{
			display: none;
			}
	#hNavLanguage dt{
		display: grid;
		grid-template-columns: auto 8px 6px;
		align-items: center;
		grid-gap: 8px;
		height: 24px;
		padding: 2px 8px;
		background: #fff;
		border: 1px solid var(--color-border);
		cursor: pointer;
		}
		#hNavLanguage dt:before{
			content: "";
			height: 16px;
			border-right: 1px solid var(--color-border);
			order: 1;
			}
		#hNavLanguage dt:after{
			content: "";
			width: 6px;
			height: 8px;
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 8"><polygon points="0 8 0 0 6 4 0 8"/></svg>') center no-repeat;
			background: currentColor;
			transform: rotate(90deg);
			order: 2;
			}
	#hNavLanguage dt.open{}
		#hNavLanguage dt.open:after{
			transform: rotate(-90deg);
			}
		#hNavLanguage dt.open+dd{
			display: block;
			height: calc(24px * 3);
			}
	#hNavLanguage dt+dd{
		position: absolute;
		top: 100%;
		width: 100%;
		height: 0;
		transition: height 0.2s ease-out;
		overflow: hidden;
		z-index: 1;
		}
	#hNavLanguage a{
		display: grid;
		align-items: center;
		height: 24px;
		padding: 2px 8px;
		background: #fff;
		border: 0 solid var(--color-border);
		border-width: 0 1px 1px 1px;
		text-align: center;
		}

#hNavGlobal{}
	#hNavGlobal ul{
		display: flex;
		justify-content: flex-end;
		align-items: center;
		grid-gap: 8px;
		}
	#hNavGlobal li{
		display: contents;
		}
		#hNavGlobal li:nth-child(n+2):before{
			content: "\FF0F";
			}
	#hNavGlobal a{
		display: grid;
		font-weight: 500;
		}
		#hNavGlobal a[href="/favorite/index.html"]{
			grid-template-columns: 16px auto;
			align-items: center;
			grid-gap: 4px;
			margin-left: 16px;
			}
			#hNavGlobal a[href="/favorite/index.html"]:before{
				content: "";
				width: 16px;
				height: 16px;
				-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.82 16"><polygon points="16.82 6.11 11.01 5.27 8.41 0 5.81 5.27 0 6.11 4.21 10.21 3.21 16 8.41 13.27 13.61 16 12.62 10.21 16.82 6.11"/></svg>') center no-repeat;
				background: currentColor;
				}

#hNavPickup{}
	#hNavPickup ul{
		display: flex;
		justify-content: flex-end;
		grid-gap: 24px;
		}
	#hNavPickup li{
		max-width: 50%;
		}
	#hNavPickup a{
		display: grid;
		grid-template-columns: 11px auto;
		grid-gap: 8px;
		font-weight: 500;
		line-height: 1.65;
		}
		#hNavPickup a:before{
			content: "";
			width: 11px;
			height: 11px;
			background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 11"><rect width="5" height="5" style="fill:%23e29a87"/><rect x="6" width="5" height="5" style="fill:%2392879e"/><rect y="6" width="5" height="5" style="fill:%23cdb979"/><rect x="6" y="6" width="5" height="5" style="fill:%238abca6"/></svg>') center no-repeat;
			transform: translateY(calc(0.35em + 3px));
			}

#navButton{
	width: 60px;
	aspect-ratio: 1;
	display: grid;
	align-content: center;
	justify-items: center;
	grid-gap: 5px;
	margin: 0;
	padding: 0;
	background: var(--color-theme);
	border: none;
	color: var(--color);
	font-size: 10px;
	box-sizing: border-box;
	text-transform: uppercase;
	cursor: pointer;
	}
	#navButton i{
		width: 32px;
		height: 2px;
		background: currentColor;
		border-radius: 1px;
		animation-duration: 0.75s;
		animation-fill-mode: forwards;
		transition: transform 0.75s;
		}
	#navButton.on{}
		#navButton.on i{}
			#navButton.on i:nth-of-type(1){
				animation-name: navButton-bar01_on;
				}
			#navButton.on i:nth-of-type(2){
				animation-delay: 0.375s;
				animation-duration: 0.1875s;
				animation-name: navButton-bar02_on;
				}
			#navButton.on i:nth-of-type(3){
				animation-name: navButton-bar03_on;
				}
	#navButton.off{}
		#navButton.off i{}
			#navButton.off i:nth-of-type(1){
				animation-name: navButton-bar01_off;
				}
			#navButton.off i:nth-of-type(2){
				animation-name: navButton-bar02_off;
				}
			#navButton.off i:nth-of-type(3){
				animation-name: navButton-bar03_off;
				}
	@keyframes navButton-bar01_on{
		0% {
			transform: translateY(0);
			}
		50% {
			transform: translateY(7px) rotate(0);
			}
		100% {
			transform: translateY(7px) rotate(45deg);
			}
		}
	@keyframes navButton-bar01_off{
		0% {
			transform: translateY(7px) rotate(45deg);
			}
		50% {
			transform: translateY(7px) rotate(0);
			}
		100% {
			transform: translateY(0);
			}
		}
	@keyframes navButton-bar02_on{
		0% {
			transform: scaleX(1);
			}
		100% {
			transform: scaleX(0);
			}
		}
	@keyframes navButton-bar02_off{
		0% {
			transform: scaleX(0);
			}
		100% {
			transform: scaleX(1);
			}
		}
	@keyframes navButton-bar03_on{
		0% {
			transform: translateY(0);
			}
		50% {
			transform: translateY(-7px) rotate(0);
			}
		100% {
			transform: translateY(-7px) rotate(-45deg);
			}
		}
	@keyframes navButton-bar03_off{
		0% {
			transform: translateY(-7px) rotate(-45deg);
			}
		50% {
			transform: translateY(-7px) rotate(0);
			}
		100% {
			transform: translateY(0);
			}
		}

#searchButton{
	position: relative;
	width: 60px;
	aspect-ratio: 1;
	margin: 0;
	padding: 0;
	background: var(--color-theme);
	border: none;
	font-size: 0;
	box-sizing: border-box;
	text-transform: uppercase;
	cursor: pointer;
	transform: translateX(16px);
	}
	#searchButton:before{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28.5 28.5"><path d="m28.06,25.94l-7.1-7.1c1.53-1.98,2.44-4.45,2.44-7.14C23.4,5.24,18.16,0,11.7,0S0,5.24,0,11.7s5.24,11.7,11.7,11.7c2.69,0,5.16-.92,7.14-2.44l7.1,7.1c.29.29.68.44,1.06.44s.77-.15,1.06-.44c.59-.59.59-1.54,0-2.12Zm-10.18-8.13s-.03.02-.04.03-.02.03-.03.05c-1.57,1.55-3.73,2.52-6.11,2.52-4.8,0-8.7-3.9-8.7-8.7S6.9,3,11.7,3s8.7,3.9,8.7,8.7c0,2.38-.96,4.54-2.52,6.11Z"/></svg>') center no-repeat;
		-webkit-mask-size: 28.5px 28.5px;
		background: currentColor;
		}

#nav{
	position: fixed;
	top: 60px;
	left: 100%;
	display: grid;
	align-content: start;
	width: min(100%, 480px);
	height: calc(100% - 60px);
	padding: 20px 0 40px 0;
	background: #fff;
	transform: translateX(0);
	transition: transform 0.2s ease-out;
	overflow-y: auto;
	overscroll-behavior: none;
	z-index: 110;
	}
	.nav #nav{
		transform: translateX(-100%);
		}
	#nav h2{
		display: none;
		}
	#nav #navPickup{
		margin-top: 24px;
		}
	@media (min-width: 480px) {
		#nav{
			border-left: 1px solid var(--color-border);
			}
		}
	@media (max-width: 767.98px) {
		#nav{
			grid-template-columns: 20px 1fr 20px;
			grid-gap: 20px 0;
			}
		#nav #navGlobal{
			grid-column: 1 / 4;
			}
		#nav #navPickup{
			grid-column: 1 / 4;
			}
		#nav #navFavorite{
			grid-column: 2;
			grid-row: 2;
			justify-self: center;
			}
		#nav #navSearch{
			grid-column: 2;
			grid-row: 1;
			}
		}
	@media (min-width: 768px) {
		#nav{
			grid-template-columns: 20px 1fr 1.5fr 20px;
			grid-gap: 20px;
			}
			#nav #navGlobal{
				grid-column: 1 / 5;
				grid-row: 2;
				}
			#nav #navPickup{
				grid-column: 1 / 5;
				grid-row: 3;
				}
			#nav #navFavorite{
				grid-column: 2;
				grid-row: 1;
				align-self: center;
				justify-self: stretch;
				}
			#nav #navSearch{
				grid-column: 3;
				grid-row: 1;
				}
		}

#navGlobal{}
	#navGlobal ul{
		position: relative;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		border-top: 1px solid var(--color-border);
		}
	#navGlobal li{
		background: var(--color-theme);
		border-bottom: 1px solid var(--color-border);
		}
		#navGlobal li:nth-child(odd){
			border-right: 1px solid var(--color-border);
			}
	#navGlobal a{
		display: grid;
		align-items: center;
		height: 48px;
		padding: 8px 20px;
		font-weight: 500;
		}

#navPickup{}
	#navPickup ul{
		display: grid;
		border-top: 1px solid var(--color-border);
		}
	#navPickup li{
		background: var(--color-theme);
		border-bottom: 1px solid var(--color-border);
		}
	#navPickup a{
		display: grid;
		grid-template-columns: 11px auto;
		grid-gap: 8px;
		align-items: center;
		min-height: 48px;
		padding: 8px 20px;
		text-align: center;
		font-weight: 500;
		line-height: 1.65;
		}
		#navPickup a:before{
			content: "";
			width: 11px;
			height: 11px;
			background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 11"><rect width="5" height="5" style="fill:%23e29a87"/><rect x="6" width="5" height="5" style="fill:%2392879e"/><rect y="6" width="5" height="5" style="fill:%23cdb979"/><rect x="6" y="6" width="5" height="5" style="fill:%238abca6"/></svg>') center no-repeat;
			}

#navSearch{}
	#navSearch form{
		display: grid;
		grid-template-columns: auto 48px;
		}
	#navSearch input[type="text"]{
		padding: 8px;
		align-self: center;
		}

#navFavorite{}
	#navFavorite a{
		display: grid;
		grid-template-columns: 16px auto;
		justify-content: center;
		grid-gap: 8px;
		padding: 16px;
		background: var(--color-theme);
		font-weight: 500;
		}
		#navFavorite a:before{
			content: "";
			width: 16px;
			height: 16px;
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.82 16"><polygon points="16.82 6.11 11.01 5.27 8.41 0 5.81 5.27 0 6.11 4.21 10.21 3.21 16 8.41 13.27 13.61 16 12.62 10.21 16.82 6.11"/></svg>') center no-repeat;
			-webkit-mask-size: contain;
			background: currentColor;
			}

#floatingNav{
	position: fixed;
	top: 0;
	height: 60.5px;
	width: 100%;
	display: flex;
	align-items: center;
	grid-gap: 24px;
	background: #fff;
	border-bottom: 1px solid var(--color-border);
	transform: translateY(-100%);
	transition: transform 0.2s ease-out;
	}
	#floatingNav.active,
	.nav #floatingNav{
		transform: translateY(0);
		}
	#floatingNav #siteName{
		margin-left: 20px;
		}
	#floatingNav #navButton{
		margin-left: auto;
		}
	@media (max-width: 991.98px) {
		#floatingNav{
			display: none;
			}
		}

#floatingNavGlobal{
	font-size: min(0.9vw, 16px);
	}
	#floatingNavGlobal ul{
		display: flex;
		align-items: center;
		grid-gap: 8px;
		}
	#floatingNavGlobal li{
		display: contents;
		}
		#floatingNavGlobal li:nth-child(n+2):not(:last-child):before{
			content: "\FF0F";
			}
	#floatingNavGlobal a{
		display: grid;
		font-weight: 500;
		}
		#floatingNavGlobal a[href="/favorite/index.html"]{
			grid-template-columns: 16px auto;
			align-items: center;
			grid-gap: 4px;
			margin-left: 8px;
			}
			#floatingNavGlobal a[href="/favorite/index.html"]:before{
				content: "";
				width: 16px;
				height: 16px;
				-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.82 16"><polygon points="16.82 6.11 11.01 5.27 8.41 0 5.81 5.27 0 6.11 4.21 10.21 3.21 16 8.41 13.27 13.61 16 12.62 10.21 16.82 6.11"/></svg>') center no-repeat;
				background: currentColor;
				}

#pagePath{
	padding: 8px 0;
	background: #fff;
	}
	#pagePath ul{
		display: flex;
		flex-wrap: wrap;
		grid-gap: 8px;
		width: var(--wrap);
		margin: 0 auto;
		font-size: clamp(10px, 2.1vw, 14px);
		line-height: 1.65;
		}
	#pagePath li{}
		#pagePath li a{
			text-decoration: underline;
			}
	#pagePath li+li{}
		#pagePath li+li:before{
			content: ">";
			margin-right: 8px;
			}

#main{
	overflow: hidden;
	}

#pageTop{
	grid-row: 6;
	align-self: flex-end;
	justify-self: end;
	position: -webkit-sticky;
	position: sticky;
	bottom: 0;
	width: 3em;
	height: 3em;
	background: var(--color-theme);
	color: transparent;
	text-align: center;
	cursor: pointer;
	opacity: 0;
	z-index: 100;
	display: none;
	}
	.done #pageTop{
		transition: opacity 0.2s ease-out 1s;
		}
		.done:not(.scrollTop) #pageTop{
			opacity: 1;
			}
	#pageTop:hover{
		background: #e50012;
		}
	#pageTop:before{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M2.582 13.891c-0.272 0.268-0.709 0.268-0.979 0s-0.271-0.701 0-0.969l7.908-7.83c0.27-0.268 0.707-0.268 0.979 0l7.908 7.83c0.27 0.268 0.27 0.701 0 0.969s-0.709 0.268-0.978 0l-7.42-7.141-7.418 7.141z" /></svg>');
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		-webkit-mask-size: 2em;
		background: #fff;
		}

#footer{
	display: grid;
	grid-template-columns: 1fr var(--wrap) 1fr;
	border-top: 1px solid var(--color-border);
	padding-bottom: 36px;
	}
	#footer > *{
		grid-column: 2;
		}

#fNavGlobal{
	display: grid;
	padding-top: 16px;
	font-feature-settings: "palt";
	line-height: 1.65;
	}
	#fNavGlobal dt{
		border-bottom: 1px solid var(--color-border);
		font-weight: 500;
		}
	#fNavGlobal dd{
		font-size: 14px;
		}
	#fNavGlobal a{
		display: inline-grid;
		grid-template-columns: 1em auto;
		}
		#fNavGlobal a:before{
			content: "-";
			}
		#fNavGlobal a[href="/favorite/index.html"]{
			margin-bottom: 1em;
			}
	@media (max-width: 575.98px) {
		#fNavGlobal dl{}
			#fNavGlobal dl > dd{
				display: none;
				}
		#fNavGlobal dt{
			display: grid;
			grid-template-columns: auto 20px;
			grid-gap: 4px;
			align-items: center;
			height: 56px;
			color: #595757;
			}
			#fNavGlobal dt:after{
				content: "";
				width: 18px;
				height: 16px;
				-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.16 15.71"><polygon points="9.31 0 8.6 .71 15.25 7.35 0 7.35 0 8.35 15.25 8.35 8.6 15 9.31 15.71 17.16 7.85 9.31 0" /></svg>') center no-repeat;
				-webkit-mask-size: 17.16px 15.71px;
				background: var(--color);
				}
		#fNavGlobal dt.open{}
			#fNavGlobal dt.open:after{
				transform: rotate(90deg);
				}
			#fNavGlobal dt.open+span{
				display: grid !important;
				grid-gap: 12px;
				padding: 16px 0 24px 0;
				}
		}
	@media (min-width: 576px) {
		#fNavGlobal{
			grid-template-columns: repeat(2, auto);
			align-items: start;
			grid-gap: 56px;
			padding-top: 80px;
			}
		#fNavGlobal dl{
			display: grid;
			grid-gap: 8px 16px;
			}
		#fNavGlobal dt{
			margin-bottom: 4px;
			padding-bottom: 20px;
			pointer-events: none;
			}
		#fNavGlobal span{
			display: contents;
			}
		}
	@media (min-width: 768px) {
		#fNavGlobal{
			grid-template-columns: repeat(2, 1fr);
			}
		}
	@media (min-width: 992px) {
		#fNavGlobal{
			grid-template-columns: repeat(4, auto);
			}
		}
	@media (min-width: 1200px) {
		#fNavGlobal{
			grid-template-columns: repeat(4, 1fr);
			}
		}

#fNavRelated{
	border: 0 solid var(--color-border);
	}
	#fNavRelated a{
		display: grid;
		grid-template-columns: auto 20px;
		grid-gap: 8px;
		align-items: center;
		height: 56px;
		color: #595757;
		font-weight: 500;
		}
		#fNavRelated a:after{
			content: "";
			width: 18px;
			height: 16px;
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.16 15.71"><polygon points="9.31 0 8.6 .71 15.25 7.35 0 7.35 0 8.35 15.25 8.35 8.6 15 9.31 15.71 17.16 7.85 9.31 0" /></svg>') center no-repeat;
			-webkit-mask-size: 17.16px 15.71px;
			background: var(--color);
			}
	@media (max-width: 575.98px) {
		#fNavRelated{
			border-bottom-width: 1px;
			}
		#fNavRelated li+li{
			border-top: 1px solid var(--color-border);
			}		
		#fNavRelated li+li.dummy{
			border-top: none;
			}
		}
	@media (min-width: 576px) {
		#fNavRelated{
			margin-top: 56px;
			border-width: 1px 0;
			}
		#fNavRelated ul{
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			}
		#fNavRelated a{
			height: 40px;
			padding: 8px 16px;
			}
		}
	@media (min-width: 576px) and (max-width: 991.98px) {
		#fNavRelated li{
			padding: 20px 0;
			}
			#fNavRelated li:nth-child(n+3){
				border-top: 1px solid var(--color-border);
				}
		#fNavRelated li:nth-child(odd) a{
			border-right: 1px solid var(--color-border);
			}
		}
	@media (min-width: 992px) {
		#fNavRelated ul{
			grid-template-columns: repeat(3, auto);
			padding: 20px 0;
			}
		#fNavRelated li+li{
			border-left: 1px solid var(--color-border);
			}
		#fNavRelated a{
			text-align: center;
			}
		}
	@media (min-width: 1200px) {
		#fNavRelated ul{
			grid-template-columns: repeat(3, 1fr);
			}
		}

#fAddress{
	margin-top: clamp(32px, 8.4vw, 56px);
	}
	#fAddress dl{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		grid-gap: 0 24px;
		text-align: center;
		line-height: 1.65;
		}
	#fAddress dt{
		width: 100%;
		font-weight: 500;
		}
	#fAddress dt+dd{
		width: 100%;
		margin-top: 4px;
		}

#copyright{
	margin-top: clamp(24px, 5.4vw, 36px);
	}
	#copyright p{
		font-size: clamp(10px, 2.1vw, 14px);
		text-align: center;
		}

#emergency{
	position: fixed;
	left: 50%;
	bottom: clamp(16px, 3.6vw, 24px);
	width: min(var(--wrap-fit), 30em);
	transform: translateX(-50%);
	z-index: 1000;
	display: none; /* ちらつき防止のためdefault none */
	}
	#emergency dl{
		display: grid;
		gap: 8px;
		padding: clamp(16px, 3.6vw, 24px);
		background: #fff;
		line-height: 1.65;
		filter: drop-shadow(0 0 0.2em rgba(0, 0, 0, 0.5));
		cursor: pointer;
		}
	#emergency dt{
		font-weight: 700;
		}
	#emergency dd{}
		#emergency dd:has(a){
			display: flex;
			justify-content: center;
			}
		#emergency dd a{
			display: grid;
			grid-template-columns: auto 18px;
			grid-gap: 16px;
			align-items: center;
			width: min(100%, 300px);
			min-height: 50px;
			margin: 8px 0 0 0;
			padding: 4px 16px;
			background: #fff;
			border: 1px solid var(--color-border);
			color: inherit;
			text-align: center;
			line-height: 1.65;
			text-decoration: none;
			}
			#emergency dd a:after{
				content: "";
				aspect-ratio: 1;
				-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.16 15.71"><polygon points="9.31 0 8.6 .71 15.25 7.35 0 7.35 0 8.35 15.25 8.35 8.6 15 9.31 15.71 17.16 7.85 9.31 0"/></svg>') center no-repeat;
				-webkit-mask-size: 17.16px 15.71px;
				background: currentColor;;
				}
	#emergency button{
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		width: 32px;
		aspect-ratio: 1;
		margin: 0;
		padding: 0;
		-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7.07 7.07"><polygon points="7.07 .71 6.36 0 3.54 2.83 .71 0 0 .71 2.83 3.54 0 6.36 .71 7.07 3.54 4.24 6.36 7.07 7.07 6.36 4.24 3.54 7.07 .71" /></svg>') center no-repeat;
		-webkit-mask-size: 40%;
		font-size: 0;
		cursor: pointer;
		overflow: hidden;
		}

#customSearch{
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	padding: 20px;
	background: var(--color-theme);
	transform: translateY(-100%);
	transition: transform 0.2s ease-out;
	}
	.search:not(.nav) #customSearch{
		transform: translateY(0);
		}
	#customSearch form{
		background: #fff;
		grid-template-columns: auto 48px;
		}
	#customSearch input[type="text"] {
		padding: 8px;
		align-self: center;
		}
	@media (min-width: 992px) {
		#customSearch{
			display: none;
			}
		}

#tabMenu{
	position: relative;
	overflow: hidden;
	}
	#tabMenu:before{
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		border-bottom: 1px solid var(--color-border);
		}
	#tabMenu ul{
		width: var(--wrap);
		margin: 0 auto;
		display: flex;
		grid-gap: 0.5px;
		}
	#tabMenu li{
		display: contents;
		}
	#tabMenu a{
		position: relative;
		display: grid;
		align-content: center;
		margin: 16px 0 1px 0;
		padding: clamp(4px, 1.2vw, 8px) clamp(12px, 2.4vw, 16px);
		background: #fff;
		outline: 1px solid var(--color-border);
		color: inherit;
		font-size: clamp(12px, 2.4vw, 16px);
		line-height: 1.65;
		text-align: center;
		word-break: keep-all;
		text-decoration: none;
		cursor: pointer;
		}
		#tabMenu a:before{
			content: "";
			position: absolute;
			right: 1px;
			bottom: 1px;
			width: 4px;
			height: 4px;
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 6"><polygon points="6 0 6 6 0 6 6 0"/></svg>') center no-repeat;
			-webkit-mask-size: contain;
			background: currentColor;
			pointer-events: none;
			}
	#tabMenu .select{}
		#tabMenu .select a{
			margin: 1px 0 0 0;
			border-bottom: none;
			font-weight: 500;
			pointer-events: none;
			z-index: 1;
			}
	@media (min-width: 768px) {
		#tabMenu a{}
			#tabMenu a:before{
				right: 2px;
				bottom: 2px;
				width: 6px;
				height: 6px;
				}
		}
	@media (min-width: 1200px) {
		#tabMenu a{
			padding: 8px 24px;
			}
		}

#pagenation{
	margin: var(--space) auto;
	}
	#pagenation :where(ul,ol){
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		grid-gap: 0.5em;
		width: var(--wrap);
		margin: auto;
		list-style: none;
		}
	#pagenation a{
		display: grid;
		place-items: center;
		height: 40px;
		color: inherit;
		text-decoration: none;
		}
		#pagenation a:not([rel]){
			aspect-ratio: 1;
			background: #fff;
			border: 1px solid var(--color-border);
			}
			#pagenation a:not([rel]).lsc-current-page{
				background: var(--color-theme);
				}
		#pagenation a[rel]{
			grid-gap: 0.5em;
			font-weight: 700;
			}
			#pagenation a[rel]:before{
				width: 16px;
				aspect-ratio: 1;
				-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.41 16"><path d="m1.71.29C1.32-.1.68-.1.29.29S-.1,1.32.29,1.71l6.29,6.29L.29,14.29c-.39.39-.39,1.02,0,1.41.2.2.45.29.71.29s.51-.1.71-.29l7.71-7.71L1.71.29Z"/></svg>') no-repeat center;
				-webkit-mask-size: contain;
				background: currentColor;
				transform: translateY(5%);
				}
		#pagenation a[rel="prev"]{
			grid-template-columns: 16px auto;
			margin-right: 8px;
			}
			#pagenation a[rel="prev"]:before{
				content: "";
				transform: scale(-1, 1);
				}
		#pagenation a[rel="next"]{
			grid-template-columns: auto 16px;
			margin-left: 8px;
			}
			#pagenation a[rel="next"]:before{
				content: "";
				order: 1;
				}
	#pagenation ul{}
		#pagenation ul li{
			display: flex;
			}
		#pagenation ul li+li{}
			#pagenation ul li+li:before{
				content: "｜";
				margin-right: 0.5em;
				}
	@media (min-width: 576px) {
		#pagenation a{
			height: 50px;
			}
		}

.subject{
	position: relative;
	display: inline-block;
	padding: 0 clamp(16px, 3.6vw, 24px);
	font: clamp(20px, 4.2vw, 28px) var(--font-min);
	line-height: 1.65;
	text-align: center;
	}
	.subject:before,
	.subject:after{
		content: "";
		position: absolute;
		top: 50%;
		width: 100vw;
		height: clamp(32px, 6vw, 40px);
		background-repeat: repeat-x;
		transform: translateY(-50%);
		}
	.subject:before{
		right: 100%;
		background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="-8 0 12 40"><circle cx="2" cy="2" r="2" fill="%23e39b88"/><circle cx="2" cy="14" r="2" fill="%2393889f"/><circle cx="2" cy="26" r="2" fill="%23ceba79"/><circle cx="2" cy="38" r="2" fill="%238bbda7"/></svg>');
		background-position: right center;
		}
	.subject:after{
		left: 100%;
		background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 40"><circle cx="2" cy="2" r="2" fill="%23e39b88"/><circle cx="2" cy="14" r="2" fill="%2393889f"/><circle cx="2" cy="26" r="2" fill="%23ceba79"/><circle cx="2" cy="38" r="2" fill="%238bbda7"/></svg>');
		background-position: left center;
		}

.topicsList{
	color: #595757;
	}
	.topicsList p{
		display: grid;
		place-items: center;
		aspect-ratio: 16 / 9;
		}
	.topicsList dl{
		position: relative;
		display: grid;
		grid-template-columns: auto 1fr;
		align-items: center;
		grid-gap: 8px 16px;
		}
	.topicsList dt{
		grid-column: 1 / 3;
		grid-row: 2;
		font-weight: 500;
		line-height: 1.65;
		}
	.topicsList dd{
		display: contents;
		}
		.topicsList dd ul{
			display: grid;
			grid-template-areas: 'main';
			width: 120px;
			}
		.topicsList dd li{
			grid-area: main;
			padding: 2px;
			background: #fff;
			border: 1px solid var(--color-border);
			font-size: 14px;
			font-weight: 500;
			text-align: center;
			text-transform: uppercase;
			}
		.topicsList dd a{
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			font-size: 0;
			}
	@media (min-width: 768px) {
		.topicsList dl{
			grid-template-columns: auto auto 1fr;
			align-items: start;
			grid-gap: 0;
			}
		.topicsList dt{
			grid-column: 3;
			grid-row: 1;
			}
		.topicsList dd{}
			.topicsList dd time{
				grid-column: 2;
				grid-row: 1;
				margin-right: 32px;
				padding: 0 32px;
				border-right: 1px solid var(--color-border);
				text-align: center;
				transform: translateY(6px);
				}
			.topicsList dd ul{
				grid-column: 1;
				grid-row: 1;
				transform: translateY(6px);
				}
		}

.infoWin{
	background: #fff;
	}
	.infoWin dl{
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-areas: 'photo photo';
		grid-gap: 8px;
		width: clamp(168px, 40vw, 350px);
		}
		.infoWin dl:before{
			content: "";
			grid-area: photo;
			width: 100%;
			background: var(--dummy);
			background-size: cover;
			aspect-ratio: 1 / 0.667;
			}
	.infoWin dt{
		grid-column: 1 / 3;
		color: #4d4d4d;
		font-weight: 700;
		font-size: clamp(12px, 2.1vw, 14px);
		line-height: 1.65;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
		}
	.infoWin dt+dd{
		grid-column: 1 / 3;
		grid-row: 2;
		position: relative;
		padding-top: 66.66%;
		}
	.infoWin dd{
		display: contents;
		}
	.infoWin dd{}
		.infoWin dd:nth-of-type(2):last-child{}
			.infoWin dd:nth-of-type(2):last-child a{
				grid-column: 1 / 3;
				justify-self: center;
				width: 50%;
				}
		.infoWin dd img{
			grid-area: photo;
			width: 100%;
			aspect-ratio: 1 / 0.667;
			object-fit: cover;
			}
			.infoWin dd img[src=""]{
				display: none;
				}
		.infoWin dd a{
			display: grid;
			place-items: center;
			padding: 8px 4px;
			background: #fff;
			border: 1px solid var(--color-border);
			color: inherit;
			font-family: 'Noto Sans JP', sans-serif;
			font-size: clamp(10px, 1.8vw, 12px);
			text-decoration: none;
			}

.infoPin{
	display: grid;
	width: 54px;
	height: 62px;
	filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.4))
	}
	.infoPin:after{
		content: "";
		justify-self: center;
		width: 0;
		height: 0;
		border: 8px solid transparent;
		border-top-color: #fff;
		transform: scale(0.6, 1) translateX(-40%);
		}
	.infoPin img{
		width: 46px;
		height: 46px;
		background: var(--color);
		border: 4px solid #fff;
		object-fit: cover;
		}

.categoryPin{
	width: 50px;
	height: 60px;
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 58.28"><path d="m48,50h-19.15l-2.94,7.64c-.33.85-1.52.86-1.86.02l-3.1-7.65H2c-1.1,0-2-.9-2-2V2C0,.9.9,0,2,0h46c1.1,0,2,.9,2,2v46c0,1.1-.9,2-2,2Z" style="fill: white"/><path d="m48,1c.55,0,1,.45,1,1v46c0,.55-.45,1-1,1h-19.83l-.25.64-2.94,7.64-3.1-7.65-.25-.62H2c-.55,0-1-.45-1-1V2c0-.55.45-1,1-1h46m0-1H2C.9,0,0,.9,0,2v46c0,1.1.9,2,2,2h18.95l3.1,7.65c.17.42.55.62.93.62s.77-.21.93-.64l2.94-7.64h19.15c1.1,0,2-.9,2-2V2c0-1.1-.9-2-2-2h0Z" style="fill:gray"/></svg>') center top no-repeat;
	}
	.categoryPin:before{
		content: "";
		display: block;
		width: 36px;
		aspect-ratio: 1;
		margin: 7px;
		-webkit-mask-position: center;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-size: contain;
		background: var(--color-point);
		}
	.categoryPin[data-category="c1"]:before{
		-webkit-mask-image: var(--icon-c1);
		}
	.categoryPin[data-category="c2"]:before{
		-webkit-mask-image: var(--icon-c2);
		}
	.categoryPin[data-category="c3"]:before{
		-webkit-mask-image: var(--icon-c3);
		}
	.categoryPin[data-category="c4"]:before{
		-webkit-mask-image: var(--icon-c4);
		}
	.categoryPin[data-category="c5"]:before{
		-webkit-mask-image: var(--icon-c5);
		}
	.categoryPin[data-category="c6"]:before{
		-webkit-mask-image: var(--icon-c6);
		}
	.categoryPin[data-category="c7"]:before{
		-webkit-mask-image: var(--icon-c7);
		}

.countPin{
	display: grid;
	place-items: center;
	width: 40px;
	height: 54px;
	padding-bottom: 16px;
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 54.29"><path d="m40,20C40,8.95,31.05,0,20,0S0,8.95,0,20c0,12.86,17.86,24.4,17.86,32.14,0,2.86,4.29,2.86,4.29,0,0-7.74,17.86-19.29,17.86-32.14Z" style="fill:black"/><path d="m20,1c10.48,0,19,8.52,19,19,0,6.88-5.51,13.52-10.38,19.38-4.01,4.84-7.48,9.01-7.48,12.76,0,1.09-.95,1.14-1.14,1.14s-1.14-.06-1.14-1.14c0-3.74-3.47-7.92-7.48-12.76C6.51,33.52,1,26.88,1,20,1,9.52,9.52,1,20,1m0-1C8.95,0,0,8.95,0,20c0,12.86,17.86,24.4,17.86,32.14,0,1.43,1.07,2.14,2.14,2.14s2.14-.71,2.14-2.14c0-7.74,17.86-19.29,17.86-32.14C40,8.95,31.05,0,20,0h0Z" style="fill:white"/></svg>') center top no-repeat;
	color: #fff;
	font-weight: 500;
	}

.slick-arrow{
	position: relative;
	width: clamp(48px, 9vw, 60px);
	aspect-ratio: 1;
	background: transparent;
	border: 1px solid currentColor;
	border-radius: 100%;
	color: inherit;
	font-size: 0;
	z-index: 1;
	}
	.slick-arrow:before{
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: min(40%, 17px);
		aspect-ratio: 1;
		-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.91 17"><path d="m1,17c-.26,0-.51-.1-.71-.29-.39-.39-.39-1.02,0-1.41l6.79-6.79L.29,1.71C-.1,1.32-.1.68.29.29S1.32-.1,1.71.29l8.21,8.21L1.71,16.71c-.2.2-.45.29-.71.29Z"/></svg>') center no-repeat;
		-webkit-mask-size: contain;
		background: currentColor;
		transform: translate(-50%, -50%);
		}
	.slick-prev{}
		.slick-prev:before{
			transform: translate(-50%, -50%) scale(-1, 1);
			}

.cse-search-box{
	display: grid;
	grid-template-columns: auto auto;
	border: 1px solid var(--color-border);
	overflow: hidden;
	}
	.cse-search-box input{
		padding: 0;
		border: none;
		}
	.cse-search-box [type="submit"]{
		aspect-ratio: 1;
		-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m14.66,13.59l-3.42-3.42c.72-.95,1.16-2.13,1.16-3.41,0-3.11-2.52-5.63-5.63-5.63S1.12,3.65,1.12,6.76s2.52,5.63,5.63,5.63c1.29,0,2.47-.44,3.41-1.16l3.42,3.42c.15.15.34.22.53.22s.38-.07.53-.22c.29-.29.29-.77,0-1.06Zm-7.9-2.7c-2.28,0-4.13-1.85-4.13-4.13s1.85-4.13,4.13-4.13,4.13,1.85,4.13,4.13-1.85,4.13-4.13,4.13Z"/></svg>') center no-repeat;
		-webkit-mask-size: min(80%, 32px);
		background: currentColor;
		}




/* image */
:root{
	--dummy: #eaedf0 url('/common/images/dummy.svg') center no-repeat;
	--icon-c1: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37 27.57"><path d="m34.84,8.29c1.02,0,1.84-.83,1.84-1.84s-.83-1.84-1.84-1.84-1.84.83-1.84,1.84.83,1.84,1.84,1.84Zm0-2.69c.47,0,.84.38.84.84s-.38.84-.84.84-.84-.38-.84-.84.38-.84.84-.84Zm-16.34-1.91c1.02,0,1.84-.83,1.84-1.84s-.83-1.84-1.84-1.84-1.84.83-1.84,1.84.83,1.84,1.84,1.84Zm0-2.69c.46,0,.84.38.84.84s-.38.84-.84.84-.84-.38-.84-.84.38-.84.84-.84ZM2.16,8.29c1.02,0,1.84-.83,1.84-1.84s-.83-1.84-1.84-1.84-1.84.83-1.84,1.84.83,1.84,1.84,1.84Zm0-2.69c.46,0,.84.38.84.84s-.38.84-.84.84-.84-.38-.84-.84.38-.84.84-.84Zm16.34,12.71c-6.59,0-12.91,2-18.29,5.78-.23.16-.28.47-.12.7.16.22.47.28.7.12,5.2-3.66,11.33-5.6,17.71-5.6s12.51,1.94,17.71,5.6c.09.06.19.09.29.09.16,0,.31-.07.41-.21.16-.23.1-.54-.12-.7-5.38-3.78-11.7-5.78-18.29-5.78Zm16.34-9.68c-1.19,0-2.16.97-2.16,2.16v.73c-3.76-1.88-7.8-2.98-12.02-3.26v-2.07c0-1.19-.97-2.16-2.16-2.16s-2.16.97-2.16,2.16v2.07c-4.22.28-8.25,1.38-12.02,3.26v-.73c0-1.19-.97-2.16-2.16-2.16s-2.16.97-2.16,2.16v11.86c0,.28.22.5.5.5s.5-.22.5-.5v-11.86c0-.64.52-1.16,1.16-1.16s1.16.52,1.16,1.16v9.82c0,.28.22.5.5.5s.5-.22.5-.5v-2.95c1.77-.92,3.61-1.66,5.51-2.21v2.6c0,.28.22.5.5.5s.5-.22.5-.5v-2.87c1.79-.46,3.63-.76,5.51-.89v2.72c0,.28.22.5.5.5s.5-.22.5-.5V6.2c0-.64.52-1.16,1.16-1.16s1.16.52,1.16,1.16v10.8c0,.28.22.5.5.5s.5-.22.5-.5v-2.7c1.88.13,3.72.43,5.51.89v2.87c0,.28.22.5.5.5s.5-.22.5-.5v-2.6c1.89.55,3.73,1.29,5.51,2.21v2.95c0,.28.22.5.5.5s.5-.22.5-.5v-9.82c0-.64.52-1.16,1.16-1.16s1.16.52,1.16,1.16v11.86c0,.28.22.5.5.5s.5-.22.5-.5v-11.86c0-1.19-.97-2.16-2.16-2.16Zm-25.01,5.77c-1.89.53-3.73,1.25-5.51,2.14v-3.9c1.77-.92,3.61-1.66,5.51-2.21v3.97Zm6.51-1.11c-1.88.13-3.71.41-5.51.86v-3.99c1.79-.46,3.63-.76,5.51-.89v4.02Zm9.83.86c-1.8-.44-3.63-.73-5.51-.86v-4.02c1.88.13,3.72.43,5.51.89v3.99Zm6.51,2.4c-1.78-.89-3.62-1.61-5.51-2.14v-3.97c1.89.55,3.73,1.29,5.51,2.21v3.9Zm-14.18,4.33c-6.59,0-12.91,2-18.29,5.78-.23.16-.28.47-.12.7.16.22.47.28.7.12,5.2-3.66,11.33-5.6,17.71-5.6s12.51,1.94,17.71,5.6c.09.06.19.09.29.09.16,0,.31-.07.41-.21.16-.23.1-.54-.12-.7-5.37-3.78-11.7-5.78-18.29-5.78Z"/></svg>');
	--icon-c2: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37 30.66"><path d="m20.74,16.5c-.18-.21-.49-.24-.7-.06-.21.18-.24.49-.06.7l3.85,4.59c.1.12.24.18.38.18.11,0,.23-.04.32-.12.21-.18.24-.49.06-.7l-3.85-4.59Zm.83-8.6c.16-.01.3-.1.39-.24.08-.14.1-.31.03-.46C20.32,3.25,16.63.48,12.36,0c-.2-.01-.39.08-.49.25l-.86,1.48-.86-1.48c-.1-.17-.29-.26-.49-.25C5.4.48,1.71,3.25.04,7.21c-.06.15-.05.32.03.45.08.14.23.23.39.24,5.64.44,10.05,5.21,10.05,10.87v2.13c0,1.9.86,4.16,3.27,4.82.04.01.09.02.13.02.22,0,.42-.15.48-.37.07-.27-.08-.54-.35-.61-1.87-.51-2.54-2.32-2.54-3.85v-2.13c0-5.66,4.42-10.44,10.05-10.87Zm-10.55,7.48c-1.32-4.38-5.11-7.75-9.77-8.4C2.84,3.78,5.91,1.54,9.46,1.04l1.12,1.95c.18.31.69.31.87,0l1.12-1.95c3.55.51,6.62,2.74,8.22,5.95-4.66.64-8.45,4.02-9.77,8.4Zm15.1-2.15c-.28,0-.5.22-.5.5v6.99c0,.28.22.5.5.5s.5-.22.5-.5v-6.99c0-.28-.22-.5-.5-.5Zm6.09,3.21c-.21-.18-.53-.15-.7.06l-3.85,4.59c-.18.21-.15.53.06.7.09.08.21.12.32.12.14,0,.28-.06.38-.18l3.85-4.59c.18-.21.15-.53-.06-.7Zm4.55,4.99c-.08-.04-1.65-.96-3.7-1.19,2.29-2.95,2.28-6.77,2.28-6.93,0-.15-.07-.28-.18-.38s-.26-.14-.4-.11c-.13.02-2.92.5-5.29,2.38-.38-3.83-2.85-6.76-2.96-6.89-.09-.11-.23-.17-.38-.17s-.29.06-.38.17c-.11.13-2.58,3.06-2.96,6.89-2.37-1.88-5.16-2.36-5.29-2.38-.14-.03-.29.02-.4.11s-.18.23-.18.38c0,.17-.01,3.99,2.28,6.93-2.05.23-3.62,1.15-3.7,1.19-.13.07-.21.2-.24.34s.01.29.11.4c.09.1,2.12,2.55,5.14,3.08.43.08.85.11,1.26.11,1.62,0,3.04-.5,3.87-.87v1.32c0,1.9.86,4.16,3.27,4.81.04.01.09.02.13.02.22,0,.42-.15.48-.37.07-.27-.08-.54-.35-.61-1.87-.51-2.54-2.32-2.54-3.85v-1.32c1.04.46,3.01,1.14,5.13.76,3.01-.53,5.05-2.98,5.14-3.08.09-.11.13-.26.11-.4s-.11-.27-.24-.34Zm-5.18,2.84c-2.64.47-5.17-1-5.2-1.01,0,0-.02,0-.02,0-.07-.04-.15-.06-.23-.06s-.16.03-.23.06c0,0-.02,0-.03,0-.02.01-2.55,1.49-5.2,1.01-1.89-.33-3.39-1.58-4.1-2.27.75-.34,2.11-.86,3.67-.82.2.02.39-.12.47-.3s.04-.4-.11-.55c-.15-.15-.3-.31-.44-.48-1.71-2.03-2.12-4.71-2.22-5.91,1.06.28,3.27,1.02,4.94,2.68.14.14.36.13.54.05.19-.08.31-.31.31-.51,0-3.02,1.63-5.65,2.39-6.71.76,1.06,2.39,3.7,2.38,6.79,0,.21.11.39.3.47.19.08.41.04.55-.1,1.67-1.66,3.89-2.4,4.94-2.68-.1,1.2-.51,3.88-2.22,5.91-.14.17-.29.33-.44.48-.14.14-.19.36-.11.55s.27.32.47.3c1.58-.03,2.93.48,3.67.82-.7.69-2.2,1.93-4.1,2.27Z"/></svg>');
	--icon-c3: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37 30.46"><path d="m21.11,15.51c.09.07.2.11.31.11.14,0,.29-.06.39-.18.17-.21.14-.52-.06-.7-.04-.03-.89-.8.12-2.61,1.44-2.59-.06-3.82-.13-3.88-.21-.17-.52-.13-.69.08-.17.21-.14.52.06.7.04.03.89.8-.12,2.61-1.44,2.59.06,3.82.13,3.88Zm-5.85,0c.09.07.2.11.31.11.14,0,.29-.06.39-.18.17-.21.14-.52-.06-.7-.04-.03-.89-.8.12-2.61,1.44-2.59-.06-3.82-.13-3.88-.21-.17-.52-.13-.69.08-.17.21-.14.52.06.7.04.03.89.8-.12,2.61-1.44,2.59.06,3.82.13,3.88ZM36.5.61h-3.5v-.11c0-.28-.22-.5-.5-.5h-2.39c-.28,0-.5.22-.5.5v.11h-9.42v-.11c0-.28-.22-.5-.5-.5h-2.39c-.28,0-.5.22-.5.5v.11H7.39v-.11c0-.28-.22-.5-.5-.5h-2.39c-.28,0-.5.22-.5.5v.11H.5c-.28,0-.5.22-.5.5s.22.5.5.5h3.5v19.36c0,4.56-1.34,8.79-1.36,8.84-.05.15-.02.32.07.45.09.13.24.21.4.21h28.01c.22,0,.41-.14.48-.35.06-.18,1.41-4.42,1.41-9.14V1.61h3.5c.28,0,.5-.22.5-.5s-.22-.5-.5-.5Zm-16.3,1h9.42v1.14h-9.42v-1.14Zm-12.81,0h9.42v1.14H7.39v-1.14Zm24.62,19.36c0,3.81-.94,7.39-1.26,8.49h-12.96c.32-1.15.94-3.67,1.15-6.62.02-.28-.19-.51-.46-.53-.25-.02-.51.19-.53.46-.22,3.09-.92,5.76-1.19,6.69H3.78c.39-1.39,1.21-4.79,1.21-8.49V1h1.39v2.24c0,.28.22.5.5.5h10.42c.28,0,.5-.22.5-.5V1h1.39v2.24c0,.28.22.5.5.5h10.42c.28,0,.5-.22.5-.5V1h1.39v19.97Zm-13.82-5.46c.09.07.2.11.31.11.14,0,.29-.06.39-.18.17-.21.14-.52-.06-.7-.04-.03-.89-.8.12-2.61,1.44-2.59-.06-3.82-.13-3.88-.21-.17-.52-.13-.69.08-.17.21-.14.52.06.7.04.03.89.8-.12,2.61-1.44,2.59.06,3.82.13,3.88Zm5.56-3.38c-.26-.11-.55,0-.66.26s0,.55.26.66c1.58.69,2.49,1.65,2.49,2.63,0,1.92-3.36,3.54-7.34,3.54s-7.34-1.62-7.34-3.54c0-.99.91-1.94,2.49-2.63.25-.11.37-.4.26-.66-.11-.25-.4-.37-.66-.26-1.97.85-3.09,2.15-3.09,3.55,0,2.55,3.66,4.54,8.34,4.54s8.34-1.99,8.34-4.54c0-1.4-1.13-2.7-3.09-3.55Z"/></svg>');
	--icon-c4: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37 27.87"><path d="m21.42,4.45h4.04c.28,0,.5-.22.5-.5s-.22-.5-.5-.5h-4.04c-.28,0-.5.22-.5.5s.22.5.5.5Zm-15.98,4.45c-1.44,0-2.6,1.17-2.6,2.6s1.17,2.6,2.6,2.6,2.6-1.17,2.6-2.6-1.17-2.6-2.6-2.6Zm0,4.21c-.88,0-1.6-.72-1.6-1.6s.72-1.6,1.6-1.6,1.6.72,1.6,1.6-.72,1.6-1.6,1.6ZM3.33,3.96h4.21c.28,0,.5-.22.5-.5s-.22-.5-.5-.5H3.33c-.28,0-.5.22-.5.5s.22.5.5.5Zm20.1,8.68c-2.18,0-3.96,1.78-3.96,3.96,0,.28.22.5.5.5s.5-.22.5-.5c0-1.63,1.33-2.96,2.96-2.96.28,0,.5-.22.5-.5s-.22-.5-.5-.5Zm10.67-7.85h-3.86l-1.81-4.48c-.08-.19-.26-.31-.46-.31h-9.09c-.2,0-.39.12-.46.31l-1.81,4.48H2.89c-1.59,0-2.89,1.3-2.89,2.89v17.3c0,1.59,1.3,2.89,2.89,2.89h31.22c1.59,0,2.89-1.3,2.89-2.89V7.68c0-1.59-1.3-2.89-2.89-2.89Zm1.89,20.19c0,1.04-.85,1.89-1.89,1.89H10.87V7.82c0-.28-.22-.5-.5-.5s-.5.22-.5.5v19.05H2.89c-1.04,0-1.89-.85-1.89-1.89V7.68c0-1.04.85-1.89,1.89-1.89h14.06c.2,0,.39-.12.46-.31l1.81-4.48h8.41l1.81,4.48c.08.19.26.31.46.31h4.19c1.04,0,1.89.85,1.89,1.89v17.3Zm-12.56-16.95c-4.73,0-8.57,3.84-8.57,8.57s3.85,8.57,8.57,8.57,8.57-3.85,8.57-8.57-3.84-8.57-8.57-8.57Zm0,16.14c-4.18,0-7.57-3.4-7.57-7.57s3.4-7.57,7.57-7.57,7.57,3.4,7.57,7.57-3.4,7.57-7.57,7.57Zm0-14.35c-3.74,0-6.77,3.04-6.77,6.77s3.04,6.77,6.77,6.77,6.77-3.04,6.77-6.77-3.04-6.77-6.77-6.77Zm0,12.55c-3.18,0-5.77-2.59-5.77-5.77s2.59-5.77,5.77-5.77,5.77,2.59,5.77,5.77-2.59,5.77-5.77,5.77Z"/></svg>');
	--icon-c5: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37 32.26"><path d="m3.59,22.82c.1.1.23.15.35.15s.26-.05.35-.15c.2-.2.2-.51,0-.71l-1.17-1.18c.56-.69,1.82-2.24,2.77-3.52.5-.67,1.25-1.03,2.04-.97.69.06,1.28.44,1.58,1.02l2.7,5.23.89-.46-2.7-5.23c-.36-.7-1-1.2-1.76-1.43.11-.22.18-.46.21-.71l1.45.49s.06.02.1.02c.12,0,.25-.07.36-.14.13-.09.21-.31.21-.47,0-2.64-2.15-4.79-4.79-4.79-1.54,0-3,.75-3.9,2.01-.09.13-.12.29-.07.45.05.15.17.27.32.32l1.78.6c-.2.36-.32.76-.32,1.17,0,.9.5,1.7,1.24,2.12-.05.06-.1.11-.15.17-1.24,1.66-3.01,3.81-3.03,3.83-.16.2-.15.49.03.67l1.5,1.5Zm-.03-10.78c.7-.67,1.64-1.06,2.63-1.06,1.89,0,3.46,1.39,3.75,3.2l-1.44-.49h0l-4.93-1.66Zm1.45,2.48c0-.31.1-.6.28-.85l2.62.88c0,.33-.13.64-.34.9-.51.03-1.01.19-1.45.46-.63-.16-1.1-.72-1.1-1.38Zm11.78,8.42s.1.02.15.02c.21,0,.41-.14.48-.35,0-.03,1.01-3.18,1.57-4.73.43-1.18,1.01-1.33,1.97-1.58l.32-.08c.29-.08.58-.14.86-.2.85-.18,1.66-.35,2.13-.95.4-.51,1.15-2.29,1.52-3.21.29.12.61.19.94.19.31,0,.61-.06.88-.17.2.78.52,2.25.4,3.6-.02.28.18.52.46.54.01,0,.03,0,.04,0,.26,0,.48-.2.5-.46.15-1.72-.31-3.53-.51-4.24.46-.46.75-1.09.75-1.79,0-1.39-1.13-2.52-2.52-2.52s-2.52,1.13-2.52,2.52c0,.69.28,1.31.72,1.76-.46,1.15-1.17,2.79-1.47,3.17-.24.31-.85.44-1.54.59-.29.06-.6.13-.91.21l-.31.08c-1.01.26-2.06.53-2.66,2.21-.57,1.57-1.57,4.73-1.58,4.77-.08.26.06.54.33.63Zm9.94-14.92c.84,0,1.52.68,1.52,1.52s-.68,1.52-1.52,1.52-1.52-.68-1.52-1.52.68-1.52,1.52-1.52Zm-9,15.16H.5c-.28,0-.5.22-.5.5s.22.5.5.5h17.22c.28,0,.5-.22.5-.5s-.22-.5-.5-.5Zm-9.75-5.12c-.28,0-.49.23-.49.51,0,.02.03,2.32-1.24,3.54-.2.19-.21.51-.02.71.1.1.23.15.36.15.12,0,.25-.05.35-.14,1.59-1.52,1.55-4.17,1.55-4.28,0-.28-.2-.48-.51-.49ZM36.75,3.6c-1.33-.76-2.63-1.36-3.89-1.84-.02,0-.03-.02-.05-.03-.01,0-.02,0-.03,0C25.77-.92,20.08.24,19.8.31c-.27.06-.44.32-.38.59.06.27.33.44.59.38.05-.01,3.36-.68,7.97.16l-.56,4.75c-.03.27.17.52.44.56.02,0,.04,0,.06,0,.25,0,.47-.19.5-.44l.55-4.67c.98.22,2.01.51,3.07.89l-2.82,8.87c-.08.26.06.54.33.63.05.02.1.02.15.02.21,0,.41-.14.48-.35l2.8-8.83c.94.38,1.91.83,2.88,1.36l-5.59,11.9c-.12.25-.01.55.24.67.07.03.14.05.21.05.19,0,.37-.11.45-.29l5.78-12.32c.11-.24.02-.52-.2-.65Zm-4.99,14.8s-.01,0-.02-.01c-1.4-1.39-3.33-2.26-5.46-2.26s-4.06.86-5.47,2.26c0,0-.01,0-.02.01s0,.01-.01.02c-1.4,1.4-2.26,3.33-2.26,5.47s.86,4.06,2.26,5.46c0,0,0,.01.01.02s.01,0,.02.01c1.4,1.39,3.33,2.26,5.46,2.26s4.06-.86,5.46-2.26c0,0,.02,0,.02-.01s0-.02.01-.02c1.39-1.4,2.26-3.33,2.26-5.46s-.86-4.06-2.26-5.46c0,0,0-.01-.01-.02Zm-10.6,1.08l3.9,3.9h-5.52c.11-1.49.7-2.84,1.62-3.9Zm-1.62,4.9h5.52l-3.9,3.9c-.92-1.07-1.51-2.42-1.62-3.9Zm6.23,6.23c-1.49-.11-2.84-.7-3.9-1.62l3.9-3.9v5.52Zm0-7.94l-3.9-3.9c1.06-.92,2.42-1.51,3.9-1.62v5.52Zm1-5.52c1.49.11,2.84.7,3.9,1.62l-3.9,3.9v-5.52Zm0,13.46v-5.52l3.9,3.9c-1.07.92-2.42,1.51-3.9,1.62Zm4.61-2.33l-3.9-3.9h5.52c-.11,1.49-.7,2.84-1.62,3.9Zm-3.9-4.9l3.9-3.9c.92,1.06,1.51,2.42,1.62,3.9h-5.52Zm-17.74,5.75c-.41-.67-.97-2.14-1.13-2.58l.3-1.56c.05-.27-.12-.53-.4-.59-.27-.05-.53.12-.59.4l-.33,1.69c-.02.09,0,.18.02.27.03.08.73,2.01,1.27,2.89.07.12.14.23.21.33.13.21.31.49.32.56,0,0-.05.08-.31.2-.73.33-1.53.42-1.82.35.07-.29.4-.71.62-.94.16-.16.2-.42.08-.62-.83-1.36-1.74-2.91-1.82-3.13-.03-.16.06-.81.19-1.4.06-.27-.11-.54-.38-.6-.26-.06-.54.11-.6.38-.12.53-.3,1.48-.18,1.88.09.32,1.05,1.94,1.74,3.07-.28.34-.67.9-.67,1.46,0,.29.14.55.39.71.23.15.55.21.89.21.68,0,1.48-.24,1.97-.46.3-.14.72-.38.85-.82.14-.49-.14-.93-.44-1.39l-.19-.31Zm6.17-1.04c-.14-.12-.26-.23-.36-.33-.32-.32-1.58-2.06-2.34-3.16-.16-.23-.47-.28-.7-.12-.23.16-.28.47-.12.7.2.29,1.97,2.81,2.45,3.29.11.11.25.24.41.37.25.22.82.72.86.87-.15.31-1.06.87-1.61,1.21l-.45.28c-.13.08-.16.05-.18.05-.13-.09-.22-.39-.18-.53.08-.38.37-1.11.48-1.36.07-.18.04-.38-.08-.52l-3.73-4.27c-.18-.21-.5-.23-.71-.05-.21.18-.23.5-.05.71l3.53,4.04c-.13.33-.34.88-.42,1.25-.1.48.09,1.22.59,1.56.18.13.39.19.6.19.23,0,.46-.07.69-.22l.44-.27c1-.62,1.74-1.1,1.99-1.64.36-.76-.46-1.48-1.11-2.05Z"/></svg>');
	--icon-c6: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 31.37 37"><path d="m17.57,10.15c0-.28-.22-.5-.5-.5h-.45v-2.24h4.33l-.45,10.07c-.01.28.2.51.48.52.3.03.51-.2.52-.48l.46-10.11h.84l.23,5.01s0,0,0,0l.12,2.6.19,4.17c.01.27.23.48.5.48,0,0,.01,0,.02,0,.28-.01.49-.25.48-.52l-.15-3.3h0s-.04-.79-.04-.79l-.37-8.18c-.01-.27-.23-.48-.5-.48h-6.65v-1.4c0-2.76-2.25-5.01-5.01-5.01s-5.01,2.25-5.01,5.01v1.4H1.76c-.27,0-.49.21-.5.48L0,34.95c0,.14.04.27.14.37.09.1.22.15.36.15h13.07c.28,0,.5-.22.5-.5s-.22-.5-.5-.5H1.02L2.24,7.41h4.35v2.24h-.45c-.28,0-.5.22-.5.5s.22.5.5.5h1.9c.28,0,.5-.22.5-.5s-.22-.5-.5-.5h-.45v-2.24h8.02v2.24h-.45c-.28,0-.5.22-.5.5s.22.5.5.5h1.9c.28,0,.5-.22.5-.5Zm-1.95-3.74H7.6v-1.4c0-2.21,1.8-4.01,4.01-4.01s4.01,1.8,4.01,4.01v1.4Zm15.25,15.93h-2.01c.49-.33.83-.7.99-1.12.17-.46.13-.97-.11-1.47-.24-.5-.62-.84-1.09-.99-.66-.21-1.46-.04-2.45.51-1.2.67-2.24,1.94-2.8,2.7-.55-.76-1.6-2.03-2.8-2.7-.99-.55-1.79-.72-2.45-.51-.47.15-.85.49-1.09.99-.24.5-.28,1.01-.11,1.47.16.42.5.79.99,1.12h-2.01c-.28,0-.5.22-.5.5v13.66c0,.28.22.5.5.5h14.92c.28,0,.5-.22.5-.5v-13.66c0-.28-.22-.5-.5-.5Zm-9.4,13.66h-5.02v-12.66h4.79c.07,0,.15.02.23.02v12.64Zm-.19-13.66c-.68-.05-1.41-.17-2.02-.43-.75-.32-1.22-.68-1.36-1.05-.08-.2-.05-.42.07-.68.12-.25.28-.41.49-.47.08-.03.18-.04.28-.04.36,0,.83.16,1.38.47.93.52,1.78,1.51,2.32,2.2h-1.16Zm3.07,13.66h-1.88v-12.61c.48,0,.83-.03.94-.04.11.01.46.04.94.04v12.61Zm2.35-15.86c.71-.4,1.29-.55,1.66-.43.21.06.37.22.49.47s.15.48.07.68c-.14.37-.61.73-1.36,1.05-.63.26-1.38.38-2.08.43h-1.1c.53-.69,1.39-1.68,2.32-2.2Zm3.68,15.86h-5.02v-12.64c.07,0,.15-.02.23-.02h4.79v12.66Z"/></svg>');
	--icon-c7: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37 32.28"><path d="m36.79,17.77c0-.09-.03-.18-.08-.25-.6-1.71-2.16-2.94-4.04-3.08-.19-.44-.62-1.43-1.13-2.6h2.95c.7,0,.95.6,1.01.78.14.41.1.97-.29,1.26-.22.17-.26.48-.1.7.1.13.25.2.4.2.11,0,.21-.03.3-.1.68-.52.94-1.47.63-2.38-.3-.9-1.05-1.47-1.96-1.47h-3.39c-.98-2.26-2.07-4.76-2.28-5.22-.4-.9-.97-1.73-2.46-1.73h-3.51V.5c0-.28-.22-.5-.5-.5h-7.74c-.28,0-.5.22-.5.5v3.38h-3.51c-1.49,0-2.07.83-2.46,1.73-.21.47-1.29,2.96-2.28,5.22h-3.39c-.91,0-1.66.56-1.96,1.47-.3.91-.05,1.86.63,2.38.09.07.2.1.3.1.15,0,.3-.07.4-.2.17-.22.12-.53-.1-.7-.39-.3-.43-.85-.29-1.26.06-.18.32-.78,1.01-.78h2.95c-.51,1.17-.94,2.15-1.13,2.6-1.87.14-3.43,1.38-4.04,3.08-.04.07-.08.16-.08.25-.12.41-.21.84-.21,1.29v6.29c0,.87.59,1.59,1.39,1.81v4.62c0,.28.22.5.5.5h5.09c.28,0,.5-.22.5-.5v-4.54h6.66v1.19c0,.28.22.5.5.5h7.74c.28,0,.5-.22.5-.5v-1.19h6.66v4.54c0,.28.22.5.5.5h5.09c.28,0,.5-.22.5-.5v-4.62c.8-.22,1.39-.95,1.39-1.81v-6.29c0-.45-.08-.88-.21-1.29ZM15.13,1h6.74v2.88h-6.74V1ZM6.67,11.53s0,0,0,0c1.01-2.33,2.19-5.03,2.4-5.51.34-.77.66-1.14,1.55-1.14h15.76c.89,0,1.21.37,1.55,1.14.21.49,1.39,3.18,2.4,5.51,0,0,0,0,0,0,.5,1.15.96,2.21,1.25,2.87H5.43c.29-.66.74-1.71,1.25-2.87Zm-5.67,7.53c0-.27.03-.54.09-.79h6.25c.55,0,1.09.27,1.36.67.24.35.83,1.26,1.26,1.93H1v-1.8Zm5.47,12.22H2.39v-4.04h4.09v4.04Zm15.39-3.35h-6.74v-3.53h6.74v3.53Zm12.74,3.35h-4.09v-4.04h4.09v4.04Zm1.39-5.93c0,.49-.4.89-.89.89h-12.24v-2.34c0-.28-.22-.5-.5-.5h-7.74c-.28,0-.5.22-.5.5v2.34H1.89c-.49,0-.89-.4-.89-.89v-3.49h9.88c.18,0,.35-.1.44-.26.09-.16.08-.36-.02-.51,0,0-1.38-2.13-1.77-2.71-.45-.67-1.32-1.11-2.19-1.11H1.49c.63-1.11,1.81-1.87,3.17-1.87h27.67c1.37,0,2.54.76,3.17,1.87h-5.85c-.88,0-1.74.44-2.19,1.11-.39.58-1.77,2.71-1.77,2.71-.1.15-.11.35-.02.51.09.16.26.26.44.26h9.88v3.49Zm0-4.49h-8.96c.43-.67,1.02-1.58,1.26-1.93.27-.4.82-.67,1.36-.67h6.25c.06.26.09.52.09.79v1.8Zm-11.13-2.53h-12.74c-.28,0-.5.22-.5.5s.22.5.5.5h12.74c.28,0,.5-.22.5-.5s-.22-.5-.5-.5Zm-1.72,2.53h-9.3c-.28,0-.5.22-.5.5s.22.5.5.5h9.3c.28,0,.5-.22.5-.5s-.22-.5-.5-.5Z"/></svg>');
	--icon-c8: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37 37"><path d="M27.89,15.26l6.58-6.91c.14-.15.18-.36.1-.54-.08-.18-.26-.3-.46-.3h-10.06s-.03,0-.05,0V3.5c0-.28-.22-.5-.5-.5H3.4s0,0,0,0V1c0-.28-.22-.5-.5-.5s-.5.22-.5.5v35c0,.28.22.5.5.5s.5-.22.5-.5v-19.17s0,0,0,0h18.79l-6.21,4.42v-3.25c0-.28-.23-.5-.5-.5h0c-.28,0-.5.22-.5.5v3.92c0,.28.23.5.5.5h18.63c.2,0,.39-.12.46-.31s.03-.41-.12-.55l-6.57-6.3ZM3.39,15.84V4s0,0,0,0h19.6v11.83H3.4s0,0,0,0ZM17.47,21.42l6.3-4.48c.16-.11.22-.3.2-.48.01-.04.02-.08.02-.12v-7.84s.03,0,.05,0h8.9l-6.12,6.43c-.19.2-.18.51.02.71l6.03,5.78h-15.4Z"/></svg>');
	--icon-c9: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37 37"><path d="M26.35,12.2c.1,0,.19-.03.28-.08.23-.15.29-.46.14-.69-.79-1.18-.3-2.56.22-4.03.55-1.57,1.18-3.35.15-5-.15-.23-.46-.31-.69-.16-.23.15-.31.45-.16.69.77,1.25.28,2.65-.25,4.14-.58,1.64-1.17,3.33-.1,4.92.1.14.25.22.42.22ZM18.33,12.2c.1,0,.19-.03.28-.08.23-.15.29-.46.14-.69-.79-1.18-.3-2.56.22-4.03.55-1.57,1.18-3.35.15-5-.15-.23-.46-.31-.69-.16-.23.15-.31.45-.16.69.77,1.25.28,2.65-.25,4.14-.58,1.64-1.17,3.33-.1,4.92.1.14.25.22.42.22ZM36,16.3H1c-.28,0-.5.22-.5.5,0,6.24,3.64,11.87,9.52,14.8v2.74c0,.28.22.5.5.5h15.96c.28,0,.5-.22.5-.5v-2.74c5.88-2.93,9.52-8.57,9.52-14.8,0-.28-.22-.5-.5-.5ZM25.98,33.84h-14.96v-1.92h14.96v1.92ZM26.22,30.87s-.04.03-.07.05h-15.3s-.04-.04-.07-.05c-5.56-2.64-9.08-7.81-9.27-13.57h33.98c-.19,5.77-3.71,10.93-9.27,13.57ZM10.31,12.2c.1,0,.19-.03.28-.08.23-.15.29-.46.14-.69-.79-1.18-.3-2.56.22-4.03.55-1.57,1.18-3.35.15-5-.15-.23-.46-.31-.69-.16-.23.15-.31.45-.16.69.77,1.25.28,2.65-.25,4.14-.58,1.64-1.17,3.33-.1,4.92.1.14.25.22.42.22Z"/></svg>');
	--pattern-area1: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147.3 147.3" width="147.3" height="147.3"><path fill="rgba(255, 255, 255, 0.2)" d="m49.07,139.62c-6.68,0-12.61,3.02-16.35,7.67h2.1c3.45-3.75,8.56-6.14,14.25-6.14s10.8,2.38,14.25,6.14h2.1c-3.74-4.65-9.67-7.67-16.35-7.67Zm-9.53,7.67h2.99c1.95-.98,4.18-1.53,6.54-1.53s4.59.56,6.54,1.53h2.99c-2.63-1.92-5.94-3.07-9.53-3.07s-6.89,1.15-9.53,3.07ZM0,145.76c2.36,0,4.59.56,6.54,1.53h2.99C6.89,145.37,3.59,144.23,0,144.23v1.53ZM0,139.62v1.53c5.69,0,10.8,2.38,14.25,6.14h2.1C12.61,142.64,6.68,139.62,0,139.62Zm98.19,0c-6.68,0-12.61,3.02-16.35,7.67h2.1c3.45-3.75,8.56-6.14,14.25-6.14s10.8,2.38,14.25,6.14h2.1c-3.74-4.65-9.67-7.67-16.35-7.67ZM147.28,3.07h.01v-1.53s0,0-.01,0c-3.43,0-6.48,1.53-8.43,3.9-.84-.65-1.73-1.25-2.65-1.8,1.21-1.5,2.76-2.74,4.54-3.64h-2.99c-1.12.82-2.13,1.78-2.98,2.86-.97-.49-1.98-.93-3.03-1.3.4-.54.82-1.06,1.28-1.55h-2.1c-.27.34-.53.68-.78,1.04-1.09-.31-2.21-.56-3.36-.73.06-.1.13-.2.2-.3h-1.89s-.04.06-.06.1c-.76-.06-1.52-.1-2.3-.1s-1.54.03-2.3.1c-.02-.03-.04-.06-.06-.1h-1.89c.07.1.13.2.2.3-1.15.17-2.27.42-3.36.73-.25-.35-.51-.7-.78-1.04h-2.1c.46.5.88,1.01,1.28,1.55-1.04.37-2.05.81-3.03,1.3-.85-1.08-1.85-2.04-2.98-2.86h-2.99c1.78.89,3.33,2.14,4.54,3.64-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9s-6.48,1.53-8.43,3.9c-.84-.65-1.73-1.25-2.65-1.8,1.21-1.5,2.76-2.74,4.54-3.64h-2.99c-1.12.82-2.13,1.78-2.98,2.86-.97-.49-1.98-.93-3.03-1.3.4-.54.82-1.06,1.28-1.55h-2.1c-.27.34-.53.68-.78,1.04-1.09-.31-2.22-.56-3.36-.73.06-.1.13-.2.2-.3h-1.89s-.04.06-.06.1c-.76-.06-1.52-.1-2.3-.1s-1.56.03-2.32.1c-.02-.03-.04-.07-.06-.1h-1.89c.07.1.13.2.2.31-1.15.17-2.27.42-3.36.74-.25-.36-.51-.71-.78-1.04h-2.1c.46.5.89,1.02,1.28,1.56-1.04.37-2.05.81-3.02,1.31-.85-1.08-1.86-2.04-2.98-2.87h-2.99c1.78.9,3.34,2.14,4.55,3.65-.93.55-1.81,1.15-2.65,1.8-1.95-2.38-5-3.91-8.44-3.91s-6.48,1.53-8.43,3.9c-.84-.65-1.73-1.25-2.65-1.8,1.21-1.5,2.76-2.74,4.54-3.64h-2.99c-1.12.82-2.13,1.78-2.98,2.86-.97-.49-1.98-.93-3.03-1.3.4-.54.82-1.06,1.28-1.55h-2.1c-.27.34-.53.68-.78,1.04-1.09-.31-2.21-.56-3.36-.73.06-.1.13-.2.2-.3h-1.89s-.04.06-.06.1c-.76-.06-1.52-.1-2.3-.1s-1.52.03-2.27.09c-.02-.03-.04-.06-.06-.09h-1.89c.06.1.13.2.19.3-1.15.17-2.27.42-3.37.73-.25-.35-.51-.7-.77-1.03h-2.1c.45.49.88,1.01,1.27,1.55-1.04.37-2.05.81-3.03,1.3-.85-1.07-1.85-2.03-2.97-2.85h-2.99c1.78.89,3.32,2.13,4.54,3.62-.93.55-1.81,1.15-2.66,1.8C6.47,3.06,3.42,1.53,0,1.53v1.53c2.93,0,5.54,1.32,7.19,3.37-.82.72-1.58,1.48-2.29,2.29C3.89,7.18,2.07,6.14,0,6.14v1.53c1.72,0,3.19,1,3.8,2.41-.55.73-1.06,1.49-1.52,2.28-.75-.06-1.51-.1-2.27-.1v1.53c8.73,0,16.37,4.44,20.49,11.04-1.15.17-2.27.42-3.37.73C13.47,20.35,7.16,16.88,0,16.88v1.53c6.44,0,12.13,3.05,15.52,7.68-1.04.37-2.05.81-3.03,1.3C9.66,23.81,5.12,21.48,0,21.48v1.53c4.51,0,8.53,2.03,11.07,5.16-.93.55-1.81,1.15-2.66,1.8C6.47,27.61,3.42,26.08,0,26.08v1.53c2.93,0,5.54,1.32,7.19,3.37-.82.72-1.58,1.48-2.29,2.29C3.89,31.73,2.07,30.69,0,30.69v1.53c1.72,0,3.19,1,3.8,2.41-.55.73-1.06,1.49-1.52,2.28-.75-.06-1.51-.1-2.27-.1v1.53c8.73,0,16.37,4.44,20.49,11.04-1.15.17-2.27.42-3.37.73C13.47,44.89,7.16,41.43,0,41.43v1.53c6.44,0,12.13,3.05,15.52,7.68-1.04.37-2.05.81-3.03,1.3C9.66,48.36,5.12,46.03,0,46.03v1.53c4.51,0,8.53,2.03,11.07,5.16-.93.55-1.81,1.15-2.66,1.8C6.47,52.16,3.42,50.63,0,50.63v1.53c2.93,0,5.54,1.32,7.19,3.37-.82.72-1.58,1.48-2.29,2.29C3.89,56.28,2.07,55.24,0,55.24v1.53c1.72,0,3.19,1,3.8,2.41-.55.73-1.06,1.49-1.52,2.28-.75-.06-1.51-.09-2.27-.09v1.53c8.73,0,16.37,4.44,20.49,11.04-1.15.17-2.27.42-3.37.73C13.47,69.44,7.16,65.98,0,65.98v1.53c6.44,0,12.13,3.05,15.52,7.68-1.04.37-2.05.81-3.03,1.3C9.66,72.91,5.12,70.58,0,70.58v1.53c4.51,0,8.53,2.03,11.07,5.16-.93.55-1.81,1.15-2.66,1.8C6.47,76.71,3.42,75.18,0,75.18v1.53c2.93,0,5.54,1.32,7.19,3.37-.82.72-1.58,1.48-2.29,2.29C3.89,80.83,2.07,79.78,0,79.78v1.53c1.72,0,3.19,1,3.8,2.41-.55.73-1.06,1.49-1.52,2.28-.75-.06-1.51-.09-2.27-.09v1.53c8.73,0,16.37,4.44,20.49,11.04-1.15.17-2.27.42-3.37.73C13.47,93.99,7.16,90.53,0,90.53v1.53c6.44,0,12.13,3.05,15.52,7.68-1.04.37-2.05.81-3.03,1.3C9.66,97.46,5.12,95.13,0,95.13v1.53c4.51,0,8.53,2.03,11.07,5.16-.93.55-1.81,1.15-2.66,1.8C6.47,101.26,3.42,99.73,0,99.73v1.53c2.93,0,5.54,1.32,7.19,3.37-.82.72-1.58,1.48-2.29,2.29C3.89,105.37,2.07,104.33,0,104.33v1.53c1.72,0,3.19,1,3.8,2.41-.55.73-1.06,1.49-1.52,2.28-.75-.06-1.51-.1-2.27-.1v1.53c8.73,0,16.37,4.44,20.49,11.04-1.15.17-2.27.42-3.37.73C13.47,118.54,7.16,115.07,0,115.07v1.53c6.44,0,12.13,3.05,15.52,7.68-1.04.37-2.05.81-3.03,1.3C9.66,122.01,5.12,119.68,0,119.68v1.53c4.51,0,8.53,2.03,11.07,5.16-.93.55-1.81,1.15-2.66,1.8C6.47,125.81,3.42,124.28,0,124.28v1.53c2.93,0,5.54,1.32,7.19,3.37-.82.72-1.58,1.48-2.29,2.29C3.89,129.92,2.07,128.88,0,128.88v1.53c1.72,0,3.19,1,3.8,2.41-.55.73-1.06,1.49-1.52,2.28-.75-.06-1.51-.09-2.27-.09v1.53c8.59,0,16.13,4.31,20.3,10.74h1.89c-.45-.76-.94-1.49-1.47-2.19.6-1.41,2.08-2.41,3.8-2.41s3.21,1.01,3.81,2.44c-.52.7-1.01,1.42-1.45,2.17h1.89c4.16-6.43,11.7-10.74,20.3-10.74s16.13,4.31,20.3,10.74h1.89c-.44-.74-.92-1.46-1.43-2.14.59-1.44,2.08-2.46,3.82-2.46s3.21,1.01,3.81,2.44c-.52.7-1.01,1.42-1.45,2.17h1.89c4.16-6.43,11.7-10.74,20.3-10.74s16.13,4.31,20.3,10.74h1.89c-.44-.75-.93-1.47-1.45-2.17.6-1.42,2.08-2.44,3.81-2.44s3.21,1.01,3.81,2.44c-.52.7-1.01,1.42-1.45,2.17h1.89c4.16-6.43,11.7-10.74,20.3-10.74,0,0,0,0,.01,0v-1.53h-.01c-.77,0-1.54.03-2.3.1-.46-.78-.96-1.54-1.51-2.26.6-1.42,2.08-2.44,3.81-2.44,0,0,0,0,.01,0v-1.53s0,0-.01,0c-2.08,0-3.91,1.05-4.91,2.61-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38,0,0,0,0,.01,0v-1.53h-.01c-3.43,0-6.48,1.53-8.43,3.9-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17,0,0,0,0,.01,0v-1.53h-.01c-5.12,0-9.67,2.33-12.5,5.93-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69,0,0,0,0,.01,0v-1.53h-.01c-7.16,0-13.47,3.47-17.13,8.71-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04h.01v-1.53s0,0-.01,0c-.77,0-1.54.03-2.3.1-.46-.78-.96-1.54-1.51-2.26.6-1.42,2.08-2.44,3.81-2.44,0,0,0,0,.01,0v-1.53s0,0-.01,0c-2.08,0-3.91,1.05-4.91,2.61-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38h.01v-1.53s0,0-.01,0c-3.43,0-6.48,1.53-8.43,3.9-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17h.01v-1.53s0,0-.01,0c-5.12,0-9.67,2.33-12.5,5.93-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69h.01v-1.53h-.01c-7.16,0-13.47,3.47-17.13,8.71-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04h.01v-1.53h-.01c-.77,0-1.54.03-2.3.1-.46-.78-.96-1.54-1.51-2.26.6-1.42,2.08-2.44,3.81-2.44,0,0,0,0,.01,0v-1.53s0,0-.01,0c-2.08,0-3.91,1.05-4.91,2.61-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38,0,0,0,0,.01,0v-1.53h-.01c-3.43,0-6.48,1.53-8.43,3.9-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17h.01v-1.53h-.01c-5.12,0-9.67,2.33-12.5,5.93-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69h.01v-1.53h-.01c-7.16,0-13.47,3.47-17.13,8.71-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04h.01v-1.53h-.01c-.77,0-1.54.03-2.3.1-.46-.78-.96-1.54-1.51-2.26.6-1.42,2.08-2.44,3.81-2.44,0,0,0,0,.01,0v-1.53h-.01c-2.08,0-3.91,1.05-4.91,2.61-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38,0,0,0,0,.01,0v-1.53h-.01c-3.43,0-6.48,1.53-8.43,3.9-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17,0,0,0,0,.01,0v-1.53h-.01c-5.12,0-9.67,2.33-12.5,5.93-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69,0,0,0,0,.01,0v-1.53h-.01c-7.16,0-13.47,3.47-17.13,8.71-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04h.01v-1.53h-.01c-.77,0-1.54.03-2.3.1-.46-.78-.96-1.54-1.51-2.26.6-1.42,2.08-2.44,3.81-2.44,0,0,0,0,.01,0v-1.53s0,0-.01,0c-2.08,0-3.91,1.05-4.91,2.61-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38,0,0,0,0,.01,0v-1.53h-.01c-3.43,0-6.48,1.53-8.43,3.9-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17,0,0,0,0,.01,0v-1.53s0,0-.01,0c-5.12,0-9.67,2.33-12.5,5.93-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69h.01v-1.53s0,0-.01,0c-7.16,0-13.47,3.47-17.13,8.71-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04h.01v-1.53s0,0-.01,0c-.77,0-1.54.03-2.3.1-.46-.78-.96-1.54-1.51-2.26.6-1.42,2.08-2.44,3.81-2.44h.01v-1.53s0,0-.01,0c-2.08,0-3.91,1.05-4.91,2.61-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38Zm-49.09,0c2.94,0,5.56,1.33,7.2,3.38-.82.72-1.58,1.48-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61s-3.91,1.05-4.91,2.61c-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38Zm0,116.61c-5.12,0-9.67,2.33-12.5,5.93-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3-2.83-3.59-7.38-5.93-12.5-5.93Zm11.08,6.7c-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9s-6.48,1.53-8.43,3.9c-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17s8.54,2.03,11.08,5.17Zm-11.08-11.31c-7.16,0-13.47,3.47-17.13,8.71-1.09-.31-2.22-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71Zm-24.55,1.53c-2.09,0-3.92,1.06-4.92,2.63-.71-.81-1.47-1.58-2.29-2.3,1.64-2.06,4.26-3.4,7.21-3.4s5.56,1.33,7.2,3.38c-.82.72-1.58,1.48-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61Zm3.81,3.97c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.56.03-2.32.1c-.45-.78-.95-1.52-1.49-2.24.59-1.44,2.08-2.46,3.82-2.46s3.21,1.01,3.81,2.44Zm-28.38-.9c-5.12,0-9.67,2.33-12.5,5.93-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69s12.14,3.06,15.53,7.7c-1.04.37-2.05.81-3.02,1.31-2.83-3.6-7.39-5.94-12.51-5.94Zm11.09,6.71c-.93.55-1.81,1.15-2.65,1.8-1.95-2.38-5-3.91-8.44-3.91s-6.48,1.53-8.43,3.9c-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17s8.55,2.04,11.09,5.18Zm-11.09-11.32c-7.16,0-13.47,3.47-17.13,8.71-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.45,20.49,11.05c-1.15.17-2.27.42-3.36.74-3.65-5.24-9.97-8.72-17.13-8.72Zm0-101.27c8.73,0,16.37,4.45,20.49,11.05-1.15.17-2.27.42-3.36.74-3.65-5.24-9.97-8.72-17.13-8.72s-13.47,3.47-17.13,8.71c-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04Zm-3.81-3.7c.6-1.42,2.08-2.44,3.81-2.44s3.23,1.02,3.82,2.46c-.54.72-1.04,1.47-1.49,2.24-.77-.07-1.54-.1-2.32-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26Zm28.38,97.3c-5.12,0-9.68,2.34-12.51,5.94-.97-.49-1.98-.93-3.02-1.31,3.39-4.64,9.09-7.7,15.53-7.7s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3-2.83-3.59-7.38-5.93-12.5-5.93Zm11.08,6.7c-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9s-6.49,1.54-8.44,3.91c-.84-.65-1.73-1.25-2.65-1.8,2.54-3.15,6.57-5.18,11.09-5.18s8.54,2.03,11.08,5.17Zm-11.08-11.31c-7.16,0-13.48,3.47-17.13,8.72-1.09-.31-2.21-.56-3.36-.74,4.12-6.6,11.76-11.05,20.49-11.05s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71Zm-3.82-6.75c.59-1.44,2.08-2.46,3.82-2.46s3.21,1.01,3.81,2.44c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.56.03-2.32.1c-.45-.78-.95-1.52-1.49-2.24Zm3.82-3.99c-2.09,0-3.92,1.06-4.92,2.63-.71-.81-1.47-1.58-2.29-2.3,1.64-2.06,4.26-3.4,7.21-3.4s5.56,1.33,7.2,3.38c-.82.72-1.58,1.49-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61Zm0-4.6c-3.44,0-6.49,1.54-8.44,3.91-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.57-5.18,11.09-5.18s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9Zm0-4.6c-5.12,0-9.68,2.34-12.51,5.94-.97-.49-1.98-.93-3.02-1.31,3.39-4.64,9.09-7.7,15.53-7.7s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3-2.83-3.59-7.38-5.93-12.5-5.93Zm0-4.6c-7.16,0-13.48,3.47-17.13,8.72-1.09-.31-2.21-.56-3.36-.74,4.12-6.6,11.76-11.05,20.49-11.05s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71Zm-3.82-6.75c.59-1.44,2.08-2.46,3.82-2.46s3.21,1.01,3.81,2.44c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.56.03-2.32.1c-.45-.77-.95-1.52-1.49-2.24Zm3.82-3.99c-2.09,0-3.92,1.06-4.92,2.63-.71-.81-1.47-1.58-2.29-2.3,1.64-2.06,4.26-3.4,7.21-3.4s5.56,1.33,7.2,3.38c-.82.72-1.58,1.49-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61Zm0-4.6c-3.44,0-6.49,1.54-8.44,3.91-.84-.65-1.73-1.25-2.65-1.8,2.54-3.15,6.57-5.18,11.09-5.18s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9Zm0-4.6c-5.12,0-9.68,2.34-12.51,5.94-.97-.5-1.98-.93-3.02-1.31,3.39-4.64,9.09-7.7,15.53-7.7s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3-2.83-3.59-7.38-5.93-12.5-5.93Zm0-4.6c-7.16,0-13.48,3.47-17.13,8.72-1.09-.31-2.21-.56-3.36-.74,4.12-6.6,11.76-11.05,20.49-11.05s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71Zm-3.82-6.75c.59-1.44,2.08-2.46,3.82-2.46s3.21,1.01,3.81,2.44c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.56.03-2.32.1c-.45-.78-.95-1.52-1.49-2.24Zm3.82-3.99c-2.09,0-3.92,1.06-4.92,2.63-.71-.81-1.47-1.58-2.29-2.3,1.64-2.06,4.26-3.39,7.21-3.39s5.56,1.33,7.2,3.38c-.82.72-1.58,1.48-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61Zm0-4.6c-3.44,0-6.49,1.54-8.44,3.91-.84-.65-1.73-1.25-2.65-1.8,2.54-3.15,6.57-5.18,11.09-5.18s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9Zm0-4.6c-5.12,0-9.68,2.34-12.51,5.94-.97-.49-1.98-.93-3.02-1.31,3.39-4.64,9.09-7.7,15.53-7.7s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3-2.83-3.59-7.38-5.93-12.5-5.93Zm0-4.6c-7.16,0-13.48,3.47-17.13,8.72-1.09-.31-2.21-.56-3.36-.74,4.12-6.6,11.76-11.05,20.49-11.05s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71Zm-3.82-6.75c.59-1.44,2.08-2.46,3.82-2.46s3.21,1.01,3.81,2.44c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.56.03-2.32.1c-.45-.78-.95-1.52-1.49-2.24Zm3.82-3.99c-2.09,0-3.92,1.06-4.92,2.63-.71-.81-1.47-1.58-2.29-2.3,1.64-2.06,4.26-3.4,7.21-3.4s5.56,1.33,7.2,3.38c-.82.72-1.58,1.49-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61Zm0-4.6c-3.44,0-6.49,1.54-8.44,3.91-.84-.65-1.73-1.25-2.65-1.8,2.54-3.15,6.57-5.18,11.09-5.18s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9Zm0-4.6c-5.12,0-9.68,2.34-12.51,5.94-.97-.49-1.98-.93-3.02-1.31,3.39-4.64,9.09-7.7,15.53-7.7s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3-2.83-3.59-7.38-5.93-12.5-5.93Zm-24.57,9.21c6.44,0,12.14,3.05,15.53,7.7-1.04.37-2.05.81-3.02,1.31-2.83-3.6-7.39-5.94-12.51-5.94s-9.67,2.33-12.5,5.93c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69Zm0,4.6c4.52,0,8.55,2.04,11.09,5.18-.93.55-1.81,1.15-2.65,1.8-1.95-2.38-5-3.91-8.44-3.91s-6.48,1.53-8.43,3.9c-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17Zm0,4.6c2.95,0,5.57,1.34,7.21,3.4-.82.72-1.58,1.49-2.29,2.3-1-1.57-2.83-2.63-4.92-2.63s-3.91,1.05-4.91,2.61c-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38Zm3.82,7.06c-.54.72-1.04,1.47-1.49,2.24-.77-.07-1.54-.1-2.32-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26.6-1.42,2.08-2.44,3.81-2.44s3.23,1.02,3.82,2.46Zm-3.82,3.68c8.73,0,16.37,4.44,20.49,11.05-1.15.17-2.27.42-3.36.74-3.65-5.24-9.97-8.72-17.13-8.72s-13.47,3.47-17.13,8.71c-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04Zm0,4.6c6.44,0,12.14,3.05,15.53,7.7-1.04.37-2.05.81-3.02,1.31-2.83-3.6-7.39-5.94-12.51-5.94s-9.67,2.33-12.5,5.93c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69Zm0,4.6c4.52,0,8.55,2.04,11.09,5.18-.93.55-1.81,1.15-2.65,1.8-1.95-2.38-5-3.91-8.44-3.91s-6.48,1.53-8.43,3.9c-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17Zm0,4.6c2.95,0,5.57,1.34,7.21,3.4-.82.72-1.58,1.49-2.29,2.3-1-1.57-2.83-2.63-4.92-2.63s-3.91,1.05-4.91,2.61c-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38Zm3.82,7.06c-.54.72-1.04,1.47-1.49,2.24-.77-.07-1.54-.1-2.32-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26.6-1.42,2.08-2.44,3.81-2.44s3.23,1.02,3.82,2.46Zm-3.82,3.68c8.73,0,16.37,4.45,20.49,11.05-1.15.17-2.27.42-3.36.74-3.65-5.24-9.97-8.72-17.13-8.72s-13.47,3.47-17.13,8.71c-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04Zm0,4.6c6.44,0,12.14,3.05,15.53,7.7-1.04.37-2.05.81-3.02,1.31-2.83-3.6-7.39-5.94-12.51-5.94s-9.67,2.33-12.5,5.93c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69Zm0,4.6c4.52,0,8.55,2.04,11.09,5.18-.93.55-1.81,1.15-2.65,1.8-1.95-2.38-5-3.91-8.44-3.91s-6.48,1.53-8.43,3.9c-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17Zm0,4.6c2.95,0,5.57,1.34,7.21,3.4-.82.72-1.58,1.49-2.29,2.3-1-1.57-2.83-2.63-4.92-2.63s-3.91,1.05-4.91,2.61c-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38Zm3.82,7.06c-.54.72-1.04,1.47-1.49,2.24-.77-.07-1.54-.1-2.32-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26.6-1.42,2.08-2.44,3.81-2.44s3.23,1.02,3.82,2.46Zm-3.82,3.68c8.73,0,16.37,4.45,20.49,11.05-1.15.17-2.27.42-3.36.74-3.65-5.24-9.97-8.72-17.13-8.72s-13.47,3.47-17.13,8.71c-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04Zm0,4.6c6.44,0,12.14,3.05,15.53,7.7-1.04.37-2.05.81-3.02,1.3-2.83-3.6-7.39-5.94-12.51-5.94s-9.67,2.33-12.5,5.93c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69Zm0,4.6c4.52,0,8.55,2.04,11.09,5.18-.93.55-1.81,1.15-2.65,1.8-1.95-2.38-5-3.91-8.44-3.91s-6.48,1.53-8.43,3.9c-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17Zm0,4.6c2.95,0,5.57,1.34,7.21,3.4-.82.72-1.58,1.49-2.29,2.3-1-1.57-2.83-2.63-4.92-2.63s-3.91,1.05-4.91,2.61c-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38Zm3.82,7.06c-.54.72-1.04,1.47-1.49,2.24-.77-.07-1.54-.1-2.32-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26.6-1.42,2.08-2.44,3.81-2.44s3.23,1.02,3.82,2.46Zm41.5-.02c.6-1.42,2.08-2.44,3.81-2.44s3.21,1.01,3.81,2.44c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26Zm3.81-3.97c-2.08,0-3.91,1.05-4.91,2.61-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38s5.56,1.33,7.2,3.38c-.82.72-1.58,1.48-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61Zm0-4.6c-3.43,0-6.48,1.53-8.43,3.9-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9Zm0-4.6c-5.12,0-9.67,2.33-12.5,5.93-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3-2.83-3.59-7.38-5.93-12.5-5.93Zm0-4.6c-7.16,0-13.47,3.47-17.13,8.71-1.09-.31-2.22-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71Zm-3.81-6.77c.6-1.42,2.08-2.44,3.81-2.44s3.21,1.01,3.81,2.44c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26Zm3.81-3.97c-2.08,0-3.91,1.05-4.91,2.61-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38s5.56,1.33,7.2,3.38c-.82.72-1.58,1.49-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61Zm0-4.6c-3.43,0-6.48,1.53-8.43,3.9-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9Zm0-4.6c-5.12,0-9.67,2.33-12.5,5.93-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3-2.83-3.59-7.38-5.93-12.5-5.93Zm0-4.6c-7.16,0-13.47,3.47-17.13,8.71-1.09-.31-2.22-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71Zm-3.81-6.77c.6-1.42,2.08-2.44,3.81-2.44s3.21,1.01,3.81,2.44c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26Zm3.81-3.97c-2.08,0-3.91,1.05-4.91,2.61-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38s5.56,1.33,7.2,3.38c-.82.72-1.58,1.49-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61Zm0-4.6c-3.43,0-6.48,1.53-8.43,3.9-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9Zm0-4.6c-5.12,0-9.67,2.33-12.5,5.93-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3-2.83-3.59-7.38-5.93-12.5-5.93Zm0-4.6c-7.16,0-13.47,3.47-17.13,8.71-1.09-.31-2.22-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71Zm-3.81-6.77c.6-1.42,2.08-2.44,3.81-2.44s3.21,1.01,3.81,2.44c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26Zm3.81-3.97c-2.08,0-3.91,1.05-4.91,2.61-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38s5.56,1.33,7.2,3.38c-.82.72-1.58,1.49-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61Zm0-4.6c-3.43,0-6.48,1.53-8.43,3.9-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9Zm0-4.6c-5.12,0-9.67,2.33-12.5,5.93-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3-2.83-3.59-7.38-5.93-12.5-5.93Zm0-4.6c-7.16,0-13.47,3.47-17.13,8.71-1.09-.31-2.22-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71Zm-3.81-6.77c.6-1.42,2.08-2.44,3.81-2.44s3.21,1.01,3.81,2.44c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26ZM73.64,1.53c8.73,0,16.37,4.44,20.49,11.04-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71s-13.48,3.47-17.13,8.72c-1.09-.31-2.21-.56-3.36-.74,4.12-6.6,11.76-11.05,20.49-11.05Zm-24.57,1.53c2.95,0,5.57,1.34,7.21,3.4-.82.72-1.58,1.49-2.29,2.3-1-1.57-2.83-2.63-4.92-2.63s-3.91,1.05-4.91,2.61c-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38ZM4.03,12.58C8.15,5.98,15.79,1.53,24.52,1.53s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71s-13.47,3.47-17.12,8.7c-1.09-.31-2.22-.56-3.37-.73Zm7.99,2.55c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.08-7.68,15.52-7.68s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3-2.83-3.59-7.38-5.93-12.5-5.93s-9.66,2.33-12.5,5.92Zm4.08,2.58c-.84-.65-1.73-1.25-2.66-1.8,2.54-3.13,6.56-5.16,11.07-5.16s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9s-6.47,1.53-8.42,3.89Zm3.52,3.31c-.71-.81-1.47-1.58-2.29-2.29,1.64-2.04,4.25-3.37,7.19-3.37s5.56,1.33,7.2,3.38c-.82.72-1.58,1.49-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61s-3.89,1.04-4.9,2.59Zm8.71,1.38c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.52.03-2.27.09c-.46-.79-.97-1.55-1.53-2.29.6-1.41,2.08-2.41,3.8-2.41s3.21,1.01,3.81,2.44Zm-24.3,14.74c4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71s-13.47,3.47-17.12,8.7c-1.09-.31-2.22-.56-3.37-.73Zm7.99,2.55c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.08-7.68,15.52-7.68s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3-2.83-3.59-7.38-5.93-12.5-5.93s-9.66,2.33-12.5,5.92Zm4.08,2.57c-.84-.65-1.73-1.25-2.66-1.8,2.54-3.13,6.56-5.16,11.07-5.16s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9s-6.47,1.53-8.42,3.89Zm3.52,3.31c-.71-.81-1.47-1.58-2.29-2.29,1.64-2.04,4.25-3.37,7.19-3.37s5.56,1.33,7.2,3.38c-.82.72-1.58,1.48-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61s-3.89,1.04-4.9,2.59Zm8.71,1.38c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.52.03-2.27.09c-.46-.79-.97-1.55-1.53-2.29.6-1.41,2.08-2.41,3.8-2.41s3.21,1.01,3.81,2.44Zm-24.3,14.74c4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71s-13.47,3.47-17.12,8.7c-1.09-.31-2.22-.56-3.37-.73Zm7.99,2.55c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.08-7.68,15.52-7.68s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3-2.83-3.59-7.38-5.93-12.5-5.93s-9.66,2.33-12.5,5.92Zm4.08,2.57c-.84-.65-1.73-1.25-2.66-1.8,2.54-3.13,6.56-5.16,11.07-5.16s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9s-6.47,1.53-8.42,3.89Zm3.52,3.31c-.71-.81-1.47-1.58-2.29-2.29,1.64-2.04,4.25-3.37,7.19-3.37s5.56,1.33,7.2,3.38c-.82.72-1.58,1.49-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61s-3.89,1.04-4.9,2.59Zm8.71,1.38c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.52.03-2.27.09c-.46-.79-.97-1.55-1.53-2.29.6-1.41,2.08-2.41,3.8-2.41s3.21,1.01,3.81,2.44Zm-24.3,14.74c4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71s-13.47,3.47-17.12,8.7c-1.09-.31-2.22-.56-3.37-.73Zm7.99,2.55c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.08-7.68,15.52-7.68s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3-2.83-3.59-7.38-5.93-12.5-5.93s-9.66,2.33-12.5,5.92Zm4.08,2.58c-.84-.65-1.73-1.25-2.66-1.8,2.54-3.13,6.56-5.16,11.07-5.16s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9s-6.47,1.53-8.42,3.89Zm3.52,3.31c-.71-.81-1.47-1.58-2.29-2.29,1.64-2.04,4.25-3.37,7.19-3.37s5.56,1.33,7.2,3.38c-.82.72-1.58,1.49-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61s-3.89,1.04-4.9,2.59Zm8.71,1.38c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.52.03-2.27.09c-.46-.79-.97-1.55-1.53-2.29.6-1.41,2.08-2.41,3.8-2.41s3.21,1.01,3.81,2.44Zm-24.3,14.74c4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71s-13.47,3.47-17.12,8.7c-1.09-.31-2.22-.56-3.37-.73Zm7.99,2.55c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.08-7.68,15.52-7.68s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3-2.83-3.59-7.38-5.93-12.5-5.93s-9.66,2.33-12.5,5.92Zm4.08,2.57c-.84-.65-1.73-1.25-2.66-1.8,2.54-3.13,6.56-5.16,11.07-5.16s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8-1.95-2.37-5-3.9-8.43-3.9s-6.47,1.53-8.42,3.89Zm3.52,3.31c-.71-.81-1.47-1.58-2.29-2.29,1.64-2.04,4.25-3.37,7.19-3.37s5.56,1.33,7.2,3.38c-.82.72-1.58,1.48-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61s-3.89,1.04-4.9,2.59Zm8.71,1.38c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.52.03-2.27.09c-.46-.79-.97-1.55-1.53-2.29.6-1.41,2.08-2.41,3.8-2.41s3.21,1.01,3.81,2.44Zm1.1,23.19c-1-1.56-2.83-2.61-4.91-2.61s-3.89,1.04-4.9,2.59c-.71-.81-1.47-1.58-2.29-2.29,1.64-2.04,4.25-3.37,7.19-3.37s5.56,1.33,7.2,3.38c-.82.72-1.58,1.48-2.29,2.3Zm3.52-3.31c-1.95-2.37-5-3.9-8.43-3.9s-6.47,1.53-8.42,3.89c-.84-.65-1.73-1.25-2.66-1.8,2.54-3.13,6.56-5.16,11.07-5.16s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8Zm4.07-2.58c-2.83-3.59-7.38-5.93-12.5-5.93s-9.66,2.33-12.5,5.92c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.08-7.68,15.52-7.68s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3Zm4.63-1.82c-3.66-5.24-9.97-8.71-17.13-8.71s-13.47,3.47-17.12,8.7c-1.09-.31-2.22-.56-3.37-.73,4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73Zm9.74-.94c-.77-.07-1.54-.1-2.32-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26.6-1.42,2.08-2.44,3.81-2.44s3.23,1.02,3.82,2.46c-.54.72-1.04,1.47-1.49,2.24Zm-2.32-6.24c-2.08,0-3.91,1.05-4.91,2.61-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38s5.57,1.34,7.21,3.4c-.82.72-1.58,1.49-2.29,2.3-1-1.57-2.83-2.63-4.92-2.63Zm29.48,14.88c-1-1.56-2.83-2.61-4.91-2.61s-3.92,1.06-4.92,2.63c-.71-.81-1.47-1.58-2.29-2.3,1.64-2.06,4.26-3.39,7.21-3.39s5.56,1.33,7.2,3.38c-.82.72-1.58,1.48-2.29,2.3Zm3.52-3.31c-1.95-2.37-5-3.9-8.43-3.9s-6.49,1.54-8.44,3.91c-.84-.65-1.73-1.25-2.65-1.8,2.54-3.15,6.57-5.18,11.09-5.18s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8Zm4.07-2.58c-2.83-3.59-7.38-5.93-12.5-5.93s-9.68,2.34-12.51,5.94c-.97-.49-1.98-.93-3.02-1.31,3.39-4.64,9.09-7.7,15.53-7.7s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3Zm4.63-1.82c-3.66-5.24-9.97-8.71-17.13-8.71s-13.48,3.47-17.13,8.72c-1.09-.31-2.21-.56-3.36-.74,4.12-6.6,11.76-11.05,20.49-11.05s16.37,4.44,20.49,11.04c-1.15.17-2.27.42-3.36.73Zm9.72-.94c-.76-.06-1.52-.1-2.3-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26.6-1.42,2.08-2.44,3.81-2.44s3.21,1.01,3.81,2.44c-.55.73-1.05,1.48-1.51,2.26Zm-2.3-6.23c-2.08,0-3.91,1.05-4.91,2.61-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38s5.56,1.33,7.2,3.38c-.82.72-1.58,1.49-2.29,2.3-1-1.56-2.83-2.61-4.91-2.61Zm29.46,14.88c-1-1.56-2.83-2.61-4.91-2.61s-3.91,1.05-4.91,2.61c-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38s5.56,1.33,7.2,3.38c-.82.72-1.58,1.48-2.29,2.3Zm3.52-3.31c-1.95-2.37-5-3.9-8.43-3.9s-6.48,1.53-8.43,3.9c-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8Zm4.07-2.58c-2.83-3.59-7.38-5.93-12.5-5.93s-9.67,2.33-12.5,5.93c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3Zm7.99-2.55c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71s-13.47,3.47-17.13,8.71c-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04Zm-24.3-14.75c.6-1.42,2.08-2.44,3.81-2.44s3.21,1.01,3.81,2.44c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26Zm8.72-1.36c-1-1.56-2.83-2.61-4.91-2.61s-3.91,1.05-4.91,2.61c-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38s5.56,1.33,7.2,3.38c-.82.72-1.58,1.49-2.29,2.3Zm3.52-3.31c-1.95-2.37-5-3.9-8.43-3.9s-6.48,1.53-8.43,3.9c-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8Zm4.07-2.58c-2.83-3.59-7.38-5.93-12.5-5.93s-9.67,2.33-12.5,5.93c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3Zm7.99-2.55c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71s-13.47,3.47-17.13,8.71c-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04Zm-24.3-14.75c.6-1.42,2.08-2.44,3.81-2.44s3.21,1.01,3.81,2.44c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26Zm8.72-1.36c-1-1.56-2.83-2.61-4.91-2.61s-3.91,1.05-4.91,2.61c-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38s5.56,1.33,7.2,3.38c-.82.72-1.58,1.49-2.29,2.3Zm3.52-3.31c-1.95-2.37-5-3.9-8.43-3.9s-6.48,1.53-8.43,3.9c-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8Zm4.07-2.58c-2.83-3.59-7.38-5.93-12.5-5.93s-9.67,2.33-12.5,5.93c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3Zm7.99-2.55c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71s-13.47,3.47-17.13,8.71c-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04Zm-24.3-14.75c.6-1.42,2.08-2.44,3.81-2.44s3.21,1.01,3.81,2.44c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26Zm8.72-1.36c-1-1.56-2.83-2.61-4.91-2.61s-3.91,1.05-4.91,2.61c-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38s5.56,1.33,7.2,3.38c-.82.72-1.58,1.48-2.29,2.3Zm3.52-3.31c-1.95-2.37-5-3.9-8.43-3.9s-6.48,1.53-8.43,3.9c-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8Zm4.07-2.58c-2.83-3.59-7.38-5.93-12.5-5.93s-9.67,2.33-12.5,5.93c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3Zm7.99-2.55c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71s-13.47,3.47-17.13,8.71c-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04Zm-24.3-14.75c.6-1.42,2.08-2.44,3.81-2.44s3.21,1.01,3.81,2.44c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26Zm8.72-1.36c-1-1.56-2.83-2.61-4.91-2.61s-3.91,1.05-4.91,2.61c-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38s5.56,1.33,7.2,3.38c-.82.72-1.58,1.48-2.29,2.3Zm3.52-3.31c-1.95-2.37-5-3.9-8.43-3.9s-6.48,1.53-8.43,3.9c-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8Zm4.07-2.58c-2.83-3.59-7.38-5.93-12.5-5.93s-9.67,2.33-12.5,5.93c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3Zm7.99-2.55c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71s-13.47,3.47-17.13,8.71c-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04Zm-24.3-14.75c.6-1.42,2.08-2.44,3.81-2.44s3.21,1.01,3.81,2.44c-.55.73-1.05,1.48-1.51,2.26-.76-.06-1.52-.1-2.3-.1s-1.54.03-2.3.1c-.46-.78-.96-1.54-1.51-2.26Zm8.72-1.36c-1-1.56-2.83-2.61-4.91-2.61s-3.91,1.05-4.91,2.61c-.71-.81-1.47-1.58-2.29-2.3,1.64-2.05,4.26-3.38,7.2-3.38s5.56,1.33,7.2,3.38c-.82.72-1.58,1.49-2.29,2.3Zm3.52-3.31c-1.95-2.37-5-3.9-8.43-3.9s-6.48,1.53-8.43,3.9c-.84-.65-1.73-1.25-2.65-1.8,2.54-3.14,6.56-5.17,11.08-5.17s8.54,2.03,11.08,5.17c-.93.55-1.81,1.15-2.65,1.8Zm4.07-2.58c-2.83-3.59-7.38-5.93-12.5-5.93s-9.67,2.33-12.5,5.93c-.97-.49-1.98-.93-3.03-1.3,3.39-4.64,9.09-7.69,15.53-7.69s12.13,3.05,15.53,7.69c-1.04.37-2.05.81-3.03,1.3Zm7.99-2.55c-1.15.17-2.27.42-3.36.73-3.66-5.24-9.97-8.71-17.13-8.71s-13.47,3.47-17.13,8.71c-1.09-.31-2.21-.56-3.36-.73,4.12-6.6,11.76-11.04,20.49-11.04s16.37,4.44,20.49,11.04Zm-12.29,134.72h2.1c3.45-3.75,8.56-6.14,14.25-6.14,0,0,0,0,.01,0v-1.53h-.01c-6.68,0-12.61,3.02-16.35,7.67Zm6.82,0h2.99c1.95-.98,4.18-1.53,6.54-1.53h.01v-1.53h-.01c-3.59,0-6.89,1.15-9.53,3.07Zm-49.09,0h2.99c1.95-.98,4.18-1.53,6.54-1.53s4.59.56,6.54,1.53h2.99c-2.63-1.92-5.94-3.07-9.53-3.07s-6.89,1.15-9.53,3.07Z"/></svg>');
	--pattern-area2: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147.3 147.3" width="147.3" height="147.3"><path fill="rgba(255, 255, 255, 0.2)" d="m24.55,95.13l-20.46,15.34,20.46,15.34,20.46-15.34-20.46-15.34Zm0,4.6l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm-14.32,10.74l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm14.32,10.74l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm1.02-10.74l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm23.53-3.07l20.46-15.34-20.46-15.34-20.46,15.34,20.46,15.34Zm0-4.6l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm14.32-10.74l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm-14.32-10.74l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm-1.02,10.74l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm25.57,3.07l-20.46,15.34,20.46,15.34,20.46-15.34-20.46-15.34Zm0,4.6l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm-14.32,10.74l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm14.32,10.74l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm1.02-10.74l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm27.62,0l20.46,15.34,20.46-15.34-20.46-15.34-20.46,15.34Zm6.14,0l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm14.32,10.74l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm14.32-10.74l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm-14.32-.77l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm-4.09-17.64l-20.46-15.34-20.46,15.34,20.46,15.34,20.46-15.34Zm-6.14,0l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm-14.32-10.74l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm-14.32,10.74l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm14.32.77l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm-53.19-19.18l-20.46-15.34-20.46,15.34,20.46,15.34,20.46-15.34Zm-6.14,0l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm-14.32-10.74l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm-14.32,10.74l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm14.32.77l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm24.55-34.52l-20.46,15.34,20.46,15.34,20.46-15.34-20.46-15.34Zm0,4.6l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm-14.32,10.74l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm14.32,10.74l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm1.02-10.74l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm23.53,3.07l-20.46,15.34,20.46,15.34,20.46-15.34-20.46-15.34Zm0,4.6l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm-14.32,10.74l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm14.32,10.74l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm1.02-10.74l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm27.62,0l20.46,15.34,20.46-15.34-20.46-15.34-20.46,15.34Zm6.14,0l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm14.32,10.74l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm14.32-10.74l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm-14.32-.77l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm-24.55-32.99l-20.46,15.34,20.46,15.34,20.46-15.34-20.46-15.34Zm0,4.6l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm-14.32,10.74l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm14.32,10.74l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm1.02-10.74l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm-54.21-18.41l-20.46-15.34-20.46,15.34,20.46,15.34,20.46-15.34Zm-6.14,0l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm-14.32-10.74l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm-14.32,10.74l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm14.32.77l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm45.01-19.18L49.1,3.07l-20.46,15.34,20.46,15.34,20.46-15.34Zm-6.14,0l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm-14.32-10.74l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm-14.32,10.74l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm14.32.77l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm24.55,32.99l20.46-15.34-20.46-15.34-20.46,15.34,20.46,15.34Zm0-4.6l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm14.32-10.74l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm-14.32-10.74l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm-1.02,10.74l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm29.66,0l20.46,15.34,20.46-15.34-20.46-15.34-20.46,15.34Zm6.14,0l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm14.32,10.74l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm14.32-10.74l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm-14.32-.77l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm-4.09-17.64l-20.46-15.34-20.46,15.34,20.46,15.34,20.46-15.34Zm-6.14,0l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm-14.32-10.74l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99Zm-14.32,10.74l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm14.32.77l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99ZM45.01,0h-6.14l-6.65,4.99L25.57,0h-2.05l-6.65,4.99L10.23,0h-6.14l20.46,15.34L45.01,0Zm-20.46.77l6.65,4.99-6.65,4.99-6.65-4.99L24.55.77ZM94.11,0h-6.14l-6.65,4.99L74.67,0h-2.05l-6.65,4.99L59.33,0h-6.14l20.46,15.34L94.11,0Zm-20.46.77l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99ZM143.2,0h-6.14l-6.65,4.99L123.77,0h-2.05l-6.65,4.99L108.43,0h-6.14l20.46,15.34L143.2,0Zm-20.46.77l6.65,4.99-6.65,4.99-6.65-4.99,6.65-4.99ZM4.09,147.29h6.14l6.65-4.99,6.65,4.99h2.05l6.65-4.99,6.65,4.99h6.14l-20.46-15.34-20.46,15.34Zm20.46-.77l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm4.09-17.65l20.46,15.34,20.46-15.34-20.46-15.34-20.46,15.34Zm6.14,0l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm14.32,10.74l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm14.32-10.74l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm-14.32-.77l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm4.09,19.18h6.14l6.65-4.99,6.65,4.99h2.05l6.65-4.99,6.65,4.99h6.14l-20.46-15.34-20.46,15.34Zm20.46-.77l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm28.64.77h6.14l6.65-4.99,6.65,4.99h2.05l6.65-4.99,6.65,4.99h6.14l-20.46-15.34-20.46,15.34Zm20.46-.77l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm-45.01-17.64l20.46,15.34,20.46-15.34-20.46-15.34-20.46,15.34Zm6.14,0l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99Zm14.32,10.74l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm14.32-10.74l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm-14.32-.77l-6.65-4.99,6.65-4.99,6.65,4.99-6.65,4.99Zm49.1-20.71v-4.6l-6.65-4.99,6.65-4.99v-1.53l-6.65-4.99,6.65-4.99v-4.6l-20.46,15.34,20.46,15.34Zm-1.02-15.34l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm1.02-21.48v-4.6l-6.65-4.99,6.65-4.99v-1.53l-6.65-4.99,6.65-4.99v-4.6l-20.46,15.34,20.46,15.34Zm-1.02-15.34l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm1.02-21.48v-4.6l-6.65-4.99,6.65-4.99v-1.53l-6.65-4.99,6.65-4.99V3.07l-20.46,15.34,20.46,15.34Zm-1.02-15.34l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99Zm1.02,125.81v-4.6l-6.65-4.99,6.65-4.99v-1.53l-6.65-4.99,6.65-4.99v-4.6l-20.46,15.34,20.46,15.34Zm-1.02-15.34l-6.65,4.99-6.65-4.99,6.65-4.99,6.65,4.99ZM0,113.54v4.6l6.65,4.99L0,128.12v1.53l6.65,4.99L0,139.62v4.6l20.46-15.34L0,113.54Zm1.02,15.34l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99ZM0,3.07v4.6l6.65,4.99L0,17.65v1.53l6.65,4.99L0,29.15v4.6l20.46-15.34L0,3.07Zm1.02,15.34l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99ZM0,39.89v4.6l6.65,4.99L0,54.47v1.53l6.65,4.99L0,65.98v4.6l20.46-15.34L0,39.89Zm1.02,15.34l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99ZM0,76.72v4.6l6.65,4.99L0,91.29v1.53l6.65,4.99L0,102.8v4.6l20.46-15.34L0,76.72Zm1.02,15.34l6.65-4.99,6.65,4.99-6.65,4.99-6.65-4.99ZM146.27,0l-23.53,17.65L99.22,0h-2.05l-23.53,17.64L50.12,0h-2.05l-23.53,17.64L1.02,0H0v.77l23.53,17.64L0,36.06v1.53l23.53,17.64L0,72.88v1.53l23.53,17.64L0,109.7v1.53l23.53,17.64L0,146.53v.77h1.02l23.53-17.64,23.53,17.64h2.05l23.53-17.64,23.53,17.64h2.05l23.53-17.64,23.53,17.64h1.02v-.77l-23.53-17.64,23.53-17.64v-1.53l-23.53-17.64,23.53-17.64v-1.53l-23.53-17.64,23.53-17.64v-1.53l-23.53-17.64L147.3.77V0h-1.02Zm-48.08.77l23.53,17.64-23.53,17.64-23.53-17.64L98.2.77Zm-25.57,91.29l-23.53,17.65-23.53-17.65,23.53-17.64,23.53,17.64ZM25.57,55.24l23.53-17.64,23.53,17.64-23.53,17.65-23.53-17.65Zm24.55,18.41l23.53-17.64,23.53,17.64-23.53,17.64-23.53-17.64Zm48.08.77l23.53,17.64-23.53,17.64-23.53-17.64,23.53-17.64Zm-23.53-19.18l23.53-17.64,23.53,17.64-23.53,17.64-23.53-17.64Zm22.5-18.41l-23.53,17.64-23.53-17.64,23.53-17.64,23.53,17.64ZM49.1.77l23.53,17.64-23.53,17.65-23.53-17.65L49.1.77ZM1.02,36.82l23.53-17.64,23.53,17.64-23.53,17.64L1.02,36.82Zm0,36.82l23.53-17.64,23.53,17.64-23.53,17.64L1.02,73.65Zm23.53,54.47L1.02,110.47l23.53-17.65,23.53,17.64-23.53,17.64Zm24.55,18.41l-23.53-17.65,23.53-17.64,23.53,17.64-23.53,17.65Zm1.02-36.06l23.53-17.64,23.53,17.65-23.53,17.64-23.53-17.64Zm48.08,36.06l-23.53-17.64,23.53-17.64,23.53,17.64-23.53,17.64Zm48.08-36.06l-23.53,17.64-23.53-17.64,23.53-17.65,23.53,17.65Zm0-36.82l-23.53,17.65-23.53-17.65,23.53-17.64,23.53,17.64Zm0-36.82l-23.53,17.65-23.53-17.65,23.53-17.64,23.53,17.64Z"/></svg>');
	--pattern-area3: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147.3 147.3" width="147.3" height="147.3"><path fill="rgba(255, 255, 255, 0.2)" d="m50.37,90.47l17.57-10.52v-21.04l-4.61,2.76v15.52l-12.96,7.76v5.52Zm-5.88-46.33v21.04l17.57,10.52v-5.52l-12.96-7.76v-15.52l-4.61-2.76Zm79.53,2.1l17.57-10.52V14.69l-4.61,2.76v15.52l-12.96,7.76v5.52Zm-80.62-2.1l-4.61,2.76v15.52l-12.96,7.76v5.52l17.57-10.52v-21.04ZM1.27,90.47l17.57-10.52v-21.04l-4.61,2.76v15.52l-12.96,7.76v5.52Zm98.2,0l17.57-10.52v-21.04l-4.61,2.76v15.52l-12.96,7.76v5.52Zm-6.98-46.33l-4.61,2.76v15.52l-12.96,7.76v5.52l17.57-10.52v-21.04Zm49.1,0l-4.61,2.76v15.52l-12.96,7.76v5.52l17.57-10.52v-21.04Zm-48.01,0v21.04l17.57,10.52v-5.52l-12.96-7.76v-15.52l-4.61-2.76Zm-38.3-9l13.21-7.91,13.21,7.91,4.37-2.61-17.57-10.52-17.57,10.52,4.37,2.61Zm24.55-14.77l13.21-7.9,13.21,7.9,4.37-2.61-17.57-10.52-17.57,10.52,4.37,2.61Zm24.55,14.77l13.21-7.91,13.21,7.91,4.37-2.61-17.57-10.52-17.57,10.52,4.37,2.61Zm-16.5-2.19l-12.96,7.76v5.52l17.57-10.52V14.69l-4.61,2.76v15.52Zm-49.1,0l-12.96,7.76v5.52l17.57-10.52V14.69l-4.61,2.76v15.52Zm-24.55-.75v15.52l-12.96,7.76v5.52l17.57-10.52v-21.04l-4.61,2.76Zm49.1,15.52l-12.96,7.76v5.52l17.57-10.52v-21.04l-4.61,2.76v15.52ZM30.74,20.38l13.21-7.91,13.21,7.91,4.37-2.61-17.57-10.52-17.57,10.52,4.37,2.61Zm81.7,27.36l-12.96,7.76v5.52l17.57-10.52v-21.04l-4.61,2.76v15.52Zm10.31-15.52l-4.61-2.76v21.04l17.57,10.52v-5.52l-12.96-7.76v-15.52Zm0,29.46l-4.61-2.76v21.04l17.57,10.52v-5.52l-12.96-7.76v-15.52Zm-53.71-2.76v21.04l17.57,10.52v-5.52l-12.96-7.76v-15.52l-4.61-2.76Zm-49.1,0v21.04l17.57,10.52v-5.52l-12.96-7.76v-15.52l-4.61-2.76Zm49.1-29.46v21.04l17.57,10.52v-5.52l-12.96-7.76v-15.52l-4.61-2.76Zm24.55-14.77v21.04l17.57,10.52v-5.52l-12.96-7.76v-15.52l-4.61-2.76Zm-49.1,0v21.04l17.57,10.52v-5.52l-12.96-7.76v-15.52l-4.61-2.76Zm-24.55,14.77v21.04l17.57,10.52v-5.52l-12.96-7.76v-15.52l-4.61-2.76Zm-.55,27.25l13.21,7.9,4.37-2.61-17.57-10.52L1.82,62l4.37,2.61,13.21-7.9Zm6.98-9.48l4.37,2.61,13.21-7.91,13.21,7.91,4.37-2.61-17.57-10.52-17.57,10.52Zm108.79,14.77l-17.57-10.52-17.57,10.52,4.37,2.61,13.21-7.91,13.21,7.91,4.37-2.61Zm-84.24,0l4.37,2.61,13.21-7.9,13.21,7.9,4.37-2.61-17.57-10.52-17.57,10.52Zm24.55-14.77l4.37,2.61,13.21-7.91,13.21,7.91,4.37-2.61-17.57-10.52-17.57,10.52ZM14.23,18.28L1.27,26.04v5.52l17.57-10.52V0l-4.61,2.76v15.52Zm49.1,0l-12.96,7.76v5.52l17.57-10.52V0l-4.61,2.76v15.52ZM1.27,119.93l17.57-10.52v-21.04l-4.61,2.76v15.52l-12.96,7.76v5.52Zm60.79-20.29l-12.96-7.76v-15.52l-4.61-2.76v21.04l17.57,10.52v-5.52Zm30.43-26.04l-4.61,2.76v15.52l-12.96,7.76v5.52l17.57-10.52v-21.04Zm-42.12,46.33l17.57-10.52v-21.04l-4.61,2.76v15.52l-12.96,7.76v5.52Zm-24.55-14.77l17.57-10.52v-21.04l-4.61,2.76v15.52l-12.96,7.76v5.52Zm85.34-5.52l-12.96-7.76v-15.52l-4.61-2.76v21.04l17.57,10.52v-5.52Zm-11.69,20.29l17.57-10.52v-21.04l-4.61,2.76v15.52l-12.96,7.76v5.52Zm12.96-101.66l-12.96,7.76v5.52l17.57-10.52V0l-4.61,2.76v15.52ZM6.19,35.15l13.21-7.91,13.21,7.91,4.37-2.61-17.57-10.52L1.82,32.54l4.37,2.61Zm135.41,38.46l-4.61,2.76v15.52l-12.96,7.76v5.52l17.57-10.52v-21.04Zm-80.08,61.99l-17.57-10.52-17.57,10.52,4.37,2.61,13.21-7.9,13.21,7.9,4.37-2.61Zm49.1,0l-17.57-10.52-17.57,10.52,4.37,2.61,13.21-7.91,13.21,7.91,4.37-2.61Zm12.13-44.46l-4.61-2.76v21.04l17.57,10.52v-5.52l-12.96-7.76v-15.52ZM37.51,26.04l-12.96-7.76V2.76L19.94,0v21.04l17.57,10.52v-5.52Zm49.1,0l-12.96-7.76V2.76L69.04,0v21.04l17.57,10.52v-5.52Zm49.1,0l-12.96-7.76V2.76L118.13,0v21.04l17.57,10.52v-5.52ZM19.94,88.38v21.04l17.57,10.52v-5.52l-12.96-7.76v-15.52l-4.61-2.76Zm86.31-9.08l4.37-2.61-17.57-10.52-17.57,10.52,4.37,2.61,13.21-7.9,13.21,7.9Zm24.55,14.77l4.37-2.61-17.57-10.52-17.57,10.52,4.37,2.61,13.21-7.9,13.21,7.9Zm-49.1,0l4.37-2.61-17.57-10.52-17.57,10.52,4.37,2.61,13.21-7.91,13.21,7.91Zm-62.3-7.91l13.21,7.9,4.37-2.61-17.57-10.52L1.82,91.45l4.37,2.61,13.21-7.9Zm37.76-6.87l4.37-2.61-17.57-10.52-17.57,10.52,4.37,2.61,13.21-7.9,13.21,7.9Zm29.46,35.12l-12.96-7.76v-15.52l-4.61-2.76v21.04l17.57,10.52v-5.52Zm-67.22,1.21l13.21,7.9,4.37-2.61-17.57-10.52L1.82,120.91l4.37,2.61,13.21-7.9Zm37.76-6.87l4.37-2.61-17.57-10.52-17.57,10.52,4.37,2.61,13.21-7.91,13.21,7.91Zm49.1,0l4.37-2.61-17.57-10.52-17.57,10.52,4.37,2.61,13.21-7.9,13.21,7.9Zm-24.55,14.77l4.37-2.61-17.57-10.52-17.57,10.52,4.37,2.61,13.21-7.91,13.21,7.91Zm49.1,0l4.37-2.61-17.57-10.52-17.57,10.52,4.37,2.61,13.21-7.91,13.21,7.91Zm-19.64,5.57l-12.96-7.76v-15.52l-4.61-2.76v21.04l17.57,10.52v-5.52Zm30.43-26.04l-4.61,2.76v15.52l-12.96,7.76v5.52l17.57-10.52v-21.04Zm-98.2,0l-4.61,2.76v15.52l-12.96,7.76v5.52l17.57-10.52v-21.04Zm49.1,0l-4.61,2.76v15.52l-12.96,7.76v5.52l17.57-10.52v-21.04Zm-30.43,26.04l-12.96-7.76v-15.52l-4.61-2.76v21.04l17.57,10.52v-5.52Zm80.62-63.91l4.61,2.76v-21.04l-4.61-2.76v21.04Zm-18.12-47.42l4.37,2.61,13.21-7.9,5.16,3.09v-5.23l-5.16-3.09-17.57,10.52Zm18.12,17.96l4.61,2.76v-21.04l-4.61-2.76v21.04Zm-18.12,11.5l4.37,2.61,13.21-7.91,5.16,3.09v-5.23l-5.16-3.09-17.57,10.52Zm18.12,47.42l4.61,2.76v-21.04l-4.61-2.76v21.04Zm-18.12,40.96l4.37,2.61,13.21-7.91,5.16,3.09v-5.23l-5.16-3.09-17.57,10.52Zm0-58.92l4.37,2.61,13.21-7.91,5.16,3.09v-5.23l-5.16-3.09-17.57,10.52Zm0,29.46l4.37,2.61,13.21-7.91,5.16,3.09v-5.23l-5.16-3.09-17.57,10.52Zm18.12,17.96l4.61,2.76v-21.04l-4.61-2.76v21.04ZM12.96,40.72L0,32.96v5.52l12.96,7.76v-5.52Zm-.55,6.5L0,39.79v5.23l8.05,4.82,4.37-2.61Zm.55,52.42l-12.96-7.76v5.52l12.96,7.76v-5.52Zm-.55-81.88L0,10.33v5.23l8.05,4.82,4.37-2.61Zm0,117.84l-12.42-7.43v5.23l8.05,4.82,4.37-2.61Zm.55-124.34L0,3.51v5.52l12.96,7.76v-5.52Zm-.55,65.42l-12.42-7.43v5.23l8.05,4.82,4.37-2.61Zm0,29.46l-12.42-7.43v5.23l8.05,4.82,4.37-2.61Zm.55-35.96L0,62.42v5.52l12.96,7.76v-5.52Zm0,58.92l-12.96-7.76v5.52l12.96,7.76v-5.52Zm11.59-8.5l-4.61-2.76v21.04l14.07,8.42h3.5v-3.42l-12.96-7.76v-15.52Zm44.49,26.7h0,0s0,0,0,0Zm-49.1,0h0,0s0,0,0,0Zm85.22,0h8.73l3.7-2.21,3.7,2.21h8.73l-12.43-7.44-12.43,7.44Zm-98.2,0h8.73l3.7-2.21,3.7,2.21h8.73l-12.43-7.44-12.43,7.44Zm49.1,0h8.73l3.7-2.21,3.7,2.21h8.73l-12.43-7.44-12.43,7.44Zm66.69-26.7l-4.61-2.76v21.04l14.07,8.42h3.5v-3.42l-12.96-7.76v-15.52Zm-49.1,0l-4.61-2.76v21.04l14.07,8.42h3.5v-3.42l-12.96-7.76v-15.52Zm43.4-2.76l-4.61,2.76v15.52l-12.96,7.76v3.42h3.5l14.07-8.42v-21.04Zm-98.2,0l-4.61,2.76v15.52l-12.96,7.76v3.42h3.5l14.07-8.42v-21.04Zm49.1,0l-4.61,2.76v15.52l-12.96,7.76v3.42h3.5l14.07-8.42v-21.04Zm-29.16,29.46h4.61v-14.77l-4.61,2.76v12.01Zm-19.94,0h0s0,0,0,0h0Zm74.74,0h4.61v-12.01l-4.61-2.76v14.77Zm-5.7,0h4.61v-14.77l-4.61,2.76v12.01Zm-19.94,0h0s0,0,0,0h0Zm-23.46,0h4.61v-12.01l-4.61-2.76v14.77Zm92.49,0h4.61v-14.77l-4.61,2.76v12.01Zm5.7,0h4.61v-12.01l-4.61-2.76v14.77ZM25.82,16.79l17.57-10.52V0h-4.61v3.5l-12.96,7.76v5.52Zm49.1,0l17.57-10.52V0h-4.61v3.5l-12.96,7.76v5.52Zm-19.64-11.09L64.79,0h-8.73l-5.14,3.08,4.37,2.61Zm30.78-2.61L80.92,0h-8.73l9.51,5.69,4.37-2.61Zm18.32,2.61L113.89,0h-8.73l-5.14,3.08,4.37,2.61Zm30.78-2.61L130.02,0h-8.73l9.51,5.69,4.37-2.61Zm-98.2,0L31.82,0h-8.73l9.51,5.69,4.37-2.61ZM6.19,5.69L15.69,0H6.96L1.82,3.08l4.37,2.61Zm117.83,11.09l17.57-10.52V0h-4.61v3.51l-12.96,7.76v5.52ZM37.51,0h-3.5l3.5,2.1V0ZM86.61,0h-3.5l3.5,2.1V0Zm-24.55,11.26l-12.96-7.76V0h-4.61v6.27l17.57,10.52v-5.52Zm49.1,0l-12.96-7.76V0h-4.61v6.27l17.57,10.52v-5.52ZM135.71,0h-3.5l3.5,2.1V0ZM1.27,0v2.1L4.78,0H1.27ZM99.47,0v2.1L102.97,0h-3.5ZM50.37,0v2.1L53.88,0h-3.5ZM142.68,0v6.27l4.61,2.76V0h-4.61Z"/></svg>');
	--pattern-area4: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 147.3 147.3" width="147.3" height="147.3"><path fill="rgba(255, 255, 255, 0.2)" d="m24.55,101.47H0v4.09h24.55v-4.09Zm0,13.91H0v4.09h24.55v-4.09Zm0-6.96H0v4.09h24.55v-4.09Zm21.28,14.32v-24.55h-4.09v24.55h4.09Zm-13.91,0v-24.55h-4.09v24.55h4.09Zm6.96,0v-24.55h-4.09v24.55h4.09Zm-17.59-24.55v-24.55h-4.09v24.55h4.09Zm-13.91,0v-24.55H3.27v24.55h4.09Zm6.96,0v-24.55h-4.09v24.55h4.09Zm10.23-17.18h24.55v-4.09h-24.55v4.09Zm24.55,9.82h-24.55v4.09h24.55v-4.09Zm-24.55-2.86h24.55v-4.09h-24.55v4.09Zm49.1,13.5h-24.55v4.09h24.55v-4.09Zm0,13.91h-24.55v4.09h24.55v-4.09Zm0-6.96h-24.55v4.09h24.55v-4.09Zm21.28,14.32v-24.55h-4.09v24.55h4.09Zm-13.91,0v-24.55h-4.09v24.55h4.09Zm6.96,0v-24.55h-4.09v24.55h4.09Zm-21.69-49.1v24.55h4.09v-24.55h-4.09Zm-13.91,0v24.55h4.09v-24.55h-4.09Zm6.96,0v24.55h4.09v-24.55h-4.09Zm38.87,3.27h-24.55v4.09h24.55v-4.09Zm0,13.91h-24.55v4.09h24.55v-4.09Zm0-6.96h-24.55v4.09h24.55v-4.09Zm0,21.69h24.55v-4.09h-24.55v4.09Zm0,13.91h24.55v-4.09h-24.55v4.09Zm0-6.95h24.55v-4.09h-24.55v4.09Zm17.18-38.87v24.55h4.09v-24.55h-4.09Zm-13.91,0v24.55h4.09v-24.55h-4.09Zm6.96,0v24.55h4.09v-24.55h-4.09ZM24.55,52.37H0v4.09h24.55v-4.09Zm0,13.91H0v4.09h24.55v-4.09Zm0-6.96H0v4.09h24.55v-4.09Zm21.28,14.32v-24.55h-4.09v24.55h4.09Zm-13.91,0v-24.55h-4.09v24.55h4.09Zm6.96,0v-24.55h-4.09v24.55h4.09Zm-17.59-24.55v-24.55h-4.09v24.55h4.09Zm-13.91,0v-24.55H3.27v24.55h4.09Zm6.96,0v-24.55h-4.09v24.55h4.09Zm10.23-17.18h24.55v-4.09h-24.55v4.09Zm0,13.91h24.55v-4.09h-24.55v4.09Zm0-6.96h24.55v-4.09h-24.55v4.09Zm24.55,17.59h24.55v-4.09h-24.55v4.09Zm24.55,9.82h-24.55v4.09h24.55v-4.09Zm-24.55-2.86h24.55v-4.09h-24.55v4.09Zm41.73-14.32v24.55h4.09v-24.55h-4.09Zm-13.91,0v24.55h4.09v-24.55h-4.09Zm6.95,0v24.55h4.09v-24.55h-4.09Zm-17.59-24.55v24.55h4.09v-24.55h-4.09Zm-13.91,0v24.55h4.09v-24.55h-4.09Zm6.96,0v24.55h4.09v-24.55h-4.09Zm38.87,3.27h-24.55v4.09h24.55v-4.09Zm0,13.91h-24.55v4.09h24.55v-4.09Zm0-6.96h-24.55v4.09h24.55v-4.09Zm0,21.69h24.55v-4.09h-24.55v4.09Zm0,13.91h24.55v-4.09h-24.55v4.09Zm0-6.96h24.55v-4.09h-24.55v4.09Zm17.18-38.87v24.55h4.09v-24.55h-4.09Zm-13.91,0v24.55h4.09v-24.55h-4.09Zm6.96,0v24.55h4.09v-24.55h-4.09ZM24.55,3.27H0v4.09h24.55V3.27Zm0,13.91H0v4.09h24.55v-4.09Zm0-6.96H0v4.09h24.55v-4.09ZM45.83,0h-4.09v24.55h4.09V0ZM31.91,0h-4.09v24.55h4.09V0ZM38.87,0h-4.09v24.55h4.09V0Zm34.78,3.27h-24.55v4.09h24.55V3.27Zm0,13.91h-24.55v4.09h24.55v-4.09Zm0-6.96h-24.55v4.09h24.55v-4.09ZM94.92,0h-4.09v24.55h4.09V0ZM81.01,0h-4.09v24.55h4.09V0ZM87.97,0h-4.09v24.55h4.09V0Zm10.23,7.36h24.55V3.27h-24.55v4.09Zm0,13.91h24.55v-4.09h-24.55v4.09Zm0-6.96h24.55v-4.09h-24.55v4.09Zm41.73,83.88v24.55h4.09v-24.55h-4.09Zm-13.91,0v24.55h4.09v-24.55h-4.09Zm6.95,0v24.55h4.09v-24.55h-4.09Zm-10.23-17.18h24.55v-4.09h-24.55v4.09Zm0,13.91h24.55v-4.09h-24.55v4.09Zm0-6.96h24.55v-4.09h-24.55v4.09Zm17.18-38.87v24.55h4.09v-24.55h-4.09Zm-13.91,0v24.55h4.09v-24.55h-4.09Zm6.95,0v24.55h4.09v-24.55h-4.09Zm-10.23-21.28v4.09h24.55v-4.09h-24.55Zm0,18h24.55v-4.09h-24.55v4.09Zm0-6.96h24.55v-4.09h-24.55v4.09ZM144.02,0h-4.09v24.55h4.09V0ZM130.11,0h-4.09v24.55h4.09V0ZM137.07,0h-4.09v24.55h4.09V0ZM17.18,147.29h4.09v-24.55h-4.09v24.55Zm-13.91,0h4.09v-24.55H3.27v24.55Zm6.96,0h4.09v-24.55h-4.09v24.55Zm14.32-17.18h24.55v-4.09h-24.55v4.09Zm0,13.91h24.55v-4.09h-24.55v4.09Zm0-6.96h24.55v-4.09h-24.55v4.09Zm41.73,10.23h4.09v-24.55h-4.09v24.55Zm-13.91,0h4.09v-24.55h-4.09v24.55Zm6.96,0h4.09v-24.55h-4.09v24.55Zm14.32-17.18h24.55v-4.09h-24.55v4.09Zm0,13.91h24.55v-4.09h-24.55v4.09Zm0-6.96h24.55v-4.09h-24.55v4.09Zm41.73,10.23h4.09v-24.55h-4.09v24.55Zm-13.91,0h4.09v-24.55h-4.09v24.55Zm6.96,0h4.09v-24.55h-4.09v24.55Zm14.32-17.18h24.55v-4.09h-24.55v4.09Zm0,13.91h24.55v-4.09h-24.55v4.09Zm0-6.96h24.55v-4.09h-24.55v4.09Z"/></svg>');
	}




